summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/engine/SCons/__main__.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/engine/SCons/__main__.py b/src/engine/SCons/__main__.py
index 5a3aadb..0dfbb9d 100644
--- a/src/engine/SCons/__main__.py
+++ b/src/engine/SCons/__main__.py
@@ -1,5 +1,4 @@
-if __name__ == "__main__":
- import SCons.Script
- # this does all the work, and calls sys.exit
- # with the proper exit status when done.
- SCons.Script.main()
+import SCons.Script
+# this does all the work, and calls sys.exit
+# with the proper exit status when done.
+SCons.Script.main()