From: daid303 Date: Mon, 10 Dec 2012 12:24:08 +0000 (+0100) Subject: Small extra comment to make it clear why the import is at an odd spot X-Git-Tag: 13.03~161 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=b6d7981529b38f99df6044aa2aca4f9e35aced61;p=cura.git Small extra comment to make it clear why the import is at an odd spot --- diff --git a/Cura/cura.py b/Cura/cura.py index b38495f7..07b901c1 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()