diff --git a/aqt/__init__.py b/aqt/__init__.py index 2f25acbba..002b87d6e 100644 --- a/aqt/__init__.py +++ b/aqt/__init__.py @@ -174,6 +174,11 @@ def run(): global mw from anki.utils import isMac + # parse args + opts, args = parseArgs(sys.argv) + opts.base = unicode(opts.base or "", sys.getfilesystemencoding()) + opts.profile = unicode(opts.profile or "", sys.getfilesystemencoding()) + # on osx we'll need to add the qt plugins to the search path if isMac and getattr(sys, 'frozen', None): rd = os.path.abspath(moduleDir + "/../../..") @@ -203,11 +208,6 @@ environment points to a valid, writable folder.""") "upgrade to a newer Qt, you may experience issues such as images " "failing to show up during review.") - # parse args - opts, args = parseArgs(sys.argv) - opts.base = unicode(opts.base or "", sys.getfilesystemencoding()) - opts.profile = unicode(opts.profile or "", sys.getfilesystemencoding()) - # profile manager from aqt.profiles import ProfileManager pm = ProfileManager(opts.base, opts.profile)