diff options
Diffstat (limited to '__main__.py')
-rw-r--r-- | __main__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/__main__.py b/__main__.py index c412e37..27cd4c0 100644 --- a/__main__.py +++ b/__main__.py @@ -14,7 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -import meson +from mesonbuild import mesonmain import sys -sys.exit(meson.main()) +sys.exit(mesonmain.main()) |