Changeset 4346 for trunk/GSASIIdataGUI.py
- Timestamp:
- Mar 6, 2020 5:17:15 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIdataGUI.py
r4334 r4346 2123 2123 '''Edit the proxy information used by subversion 2124 2124 ''' 2125 h,p = host,port = GSASIIpath.getsvnProxy() 2125 h,p,e = host,port,etc = GSASIIpath.getsvnProxy() 2126 if e: 2127 proxyinfo = os.path.join(GSASIIpath.path2GSAS2,"proxyinfo.txt") 2128 G2G.G2MessageBox(self,'File {} has manually-'.format(proxyinfo)+ 2129 'entered information. Please edit this by hand', 2130 'Unable to edit') 2131 return 2126 2132 dlg = G2G.MultiStringDialog(self,'Enter proxy values', 2127 2133 ['Proxy address','proxy port'], 2128 2134 [host,port],size=300) 2129 #dlg.SetSize((300,-1))2130 2135 if dlg.Show(): 2131 2136 h,p = dlg.GetValues()
Note: See TracChangeset
for help on using the changeset viewer.