Always call run() from main.py.
authorMatthijs Kooijman <matthijs@stdin.nl>
Wed, 12 Aug 2009 18:52:40 +0000 (20:52 +0200)
committerMatthijs Kooijman <matthijs@stdin.nl>
Thu, 13 Aug 2009 09:58:42 +0000 (11:58 +0200)
Previously, run() was only called when main.py was the main module, but
this is never the case (since default.py is the main module).

src/main.py

index 80a7538fe77a691afa9f9d9b8d18b8eaf3b05014..85065dd9d0721cc481033fea15ec75a2c7dfecef 100644 (file)
@@ -83,6 +83,6 @@ def run():
 
     logger.close()
 
-if __name__ == "__main__":
-    run()
+run()
+
 #tr.stop()