From b7a99e202b428cf50549b99ae664f1f8f2caeb52 Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Wed, 12 Aug 2009 20:52:40 +0200 Subject: [PATCH] Always call run() from main.py. 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.py b/src/main.py index 80a7538..85065dd 100644 --- a/src/main.py +++ b/src/main.py @@ -83,6 +83,6 @@ def run(): logger.close() -if __name__ == "__main__": - run() +run() + #tr.stop() -- 2.30.2