~diegosarmentero/ubuntuone-windows-installer/not-validated-account

« back to all changes in this revision

Viewing changes to ubuntuone_installer/gui/qt/utils/__init__.py

  • Committer: Tarmac
  • Author(s): Manuel de la Pena
  • Date: 2011-10-21 18:50:22 UTC
  • mfrom: (81.1.15 fix-reactor-import)
  • Revision ID: tarmac-20111021185022-q9av5x2iaqvz4qih
Fix the reactor installation by ensuring that tools does not install the reactor.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
    perform_update = windows.perform_update
34
34
    uninstall_old_beta = windows.uninstall_old_beta
35
35
    migrate_old_data = windows.migrate_old_data
 
36
    check_updates = windows.check_updates
 
37
    check_credentials = windows.check_credentials
36
38
else:
37
39
    from ubuntuone_installer.gui.qt.utils import linux
38
40
    uninstall_application = linux.uninstall_application
44
46
    perform_update = lambda *args, **kwargs: None
45
47
    uninstall_old_beta = lambda *args, **kwargs: None
46
48
    migrate_old_data = lambda *args, **kwargs: None
 
49
    check_updates = lambda *args, **kwargs: None
 
50
    check_credentials = lambda *args, **kwargs: None