From b6d7981529b38f99df6044aa2aca4f9e35aced61 Mon Sep 17 00:00:00 2001 From: daid303 Date: Mon, 10 Dec 2012 13:24:08 +0100 Subject: [PATCH] Small extra comment to make it clear why the import is at an odd spot --- Cura/cura.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Cura/cura.py b/Cura/cura.py index b38495f..07b901c 100644 --- a/Cura/cura.py +++ b/Cura/cura.py @@ -70,6 +70,7 @@ def main(): if len(args) > 0: profile.putPreference('lastFile', ';'.join(args)) + #Do not import anything from Cura.gui before this spot, as the above code also needs to run in pypy. from Cura.gui import app app.CuraApp().MainLoop()