Changeset 6364
- Timestamp:
- Feb 19, 2009, 11:07:21 AM (16 years ago)
- Location:
- misc/tools/event_selection
- Files:
-
- 2 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') -
misc/tools/event_selection/installer/EventSelection.nsi
r6362 r6364 1 1 !define PRODUCT_NAME "EventSelection" 2 !define PRODUCT_VERSION " 0.8"2 !define PRODUCT_VERSION "1.0" 3 3 !define ICON_FILE "tsunami.ico" 4 4
Note: See TracChangeset
for help on using the changeset viewer.