Changeset 4256
- Timestamp:
- Jan 18, 2020 8:17:51 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
install/g2complete/src/bootstrap.py
r4242 r4256 18 18 if 'noinstall' in a.lower(): 19 19 skipInstallSteps = True 20 showWXerror = True20 if sys.platform.startswith('win'): showWXerror = True 21 21 elif 'nonet' in a.lower(): 22 22 skipDownloadSteps = True … … 55 55 def BailOut(msg): 56 56 '''Exit with an error message. Use a GUI to show the error when 57 showWXerror == True ( when --noinstall is specified)57 showWXerror == True (on windows when --noinstall is specified) 58 58 ''' 59 59 print(msg) … … 67 67 dlg.ShowModal() 68 68 dlg.Destroy() 69 # else: 70 # print(msg,file=sys.stderr) 69 71 sys.exit() 70 72
Note: See TracChangeset
for help on using the changeset viewer.