Changeset 781:49293a78f302 in hatta-dev


Ignore:
Timestamp:
07/16/10 20:48:56 (22 months ago)
Author:
Cezary Krzy?anowski <dhubleizh@…>
Branch:
default
Message:

Correct exe build automation.

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • error_dialog.py

    r780 r781  
    4848        try: 
    4949            import sysconfig 
    50             env.append(('Sysconfig', sysconfig.platform)) 
     50            env.append(('Sysconfig', sysconfig.get_platform())) 
    5151        except ImportError: 
    5252            try: 
  • hatta_qticon.py

    r780 r781  
    614614            error_dialog = ErrorDialog(module_path()) 
    615615            status_icon = HattaTrayIcon() 
    616             raise AttributeError("DUPA") 
    617616            app.exec_() 
    618617        except Exception as e: 
  • setup.py

    r780 r781  
    244244                                self.console_exe_files+self.windows_exe_files, 
    245245                                self.lib_files, 
    246                                 hatta.description, version) 
     246                                hatta.project_description, version) 
    247247            print "*** creating the inno setup script***" 
    248             script.create(os.path.join(self.dist_dir, hatta.name + '.iss')) 
     248            script.create(os.path.join(self.dist_dir, hatta.project_name + '.iss')) 
    249249            print "*** compiling the inno setup script***" 
    250250            script.compile() 
     
    261261 
    262262    # Adding MS runtime C libraries 
    263     if sys.version.startswith('2.6'): 
     263    if float(sys.version.split(' ', 1)[0]) >= 2.6: 
    264264        from win32com.shell import shellcon, shell 
    265265        from glob import glob 
Note: See TracChangeset for help on using the changeset viewer.