Changeset 377:72893c2b24d9 for src
- Timestamp:
- 12/18/12 13:03:24 (12 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mlx/mlx.py
r373 r377 70 70 config.load() 71 71 72 if (len(sys.argv)<=1 or sys.argv[1]!="usedeflang") and config.setupLocale(): 73 restart(["usedeflang"] + (["secondary"] if secondaryInstallation else [])) 72 secondaryArgs = ["secondary"] if secondaryInstallation else [] 73 if "usedeflang" not in sys.argv and config.setupLocale(): 74 restart(["usedeflang"] + secondaryArgs) 74 75 75 76 setLanguage(programDirectory, config.getLanguage()) … … 95 96 96 97 if gui.toRestart: 97 restart( )98 restart(secondaryArgs) 98 99 99 100 #--------------------------------------------------------------------------------------
Note:
See TracChangeset
for help on using the changeset viewer.