Changeset 6364 for misc/tools/event_selection/EventSelection.py
- Timestamp:
- Feb 19, 2009, 11:07:21 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
misc/tools/event_selection/EventSelection.py
r6362 r6364 24 24 msg = ('Sorry, you have to install WxPython.\n' 25 25 'Get it from either:\n' 26 r' N:\georisk\downloads\ event_selection, or' '\n'26 r' N:\georisk\downloads\wxpython, or' '\n' 27 27 ' [http://www.wxpython.org/download.php#binaries].') 28 28 tkinter_error.tkinter_error(msg) … … 53 53 # program name and version 54 54 APP_NAME = 'EventSelection' 55 APP_VERSION = ' 0.8'55 APP_VERSION = '1.0' 56 56 57 57 # name of the configuration filename … … 833 833 self.panel.SetCursor(wx.StockCursor(wx.CURSOR_WAIT)) 834 834 835 fault_event_dir = os.path.join(output_base_dir, '%6.6d' % quake_ID)835 fault_event_dir = os.path.join(output_base_dir, str(quake_ID)) 836 836 os.makedirs(fault_event_dir) 837 837 fault_event_filename = os.path.join(fault_event_dir, 'event.list')
Note: See TracChangeset
for help on using the changeset viewer.