~didrocks/ubuntuone-client/use_result_var

« back to all changes in this revision

Viewing changes to ubuntuone/platform/linux/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Rodney Dawes
  • Date: 2011-01-25 16:42:52 UTC
  • mfrom: (1.1.43 upstream)
  • Revision ID: james.westby@ubuntu.com-20110125164252-gyx1hii7jk1b3hw7
Tags: 1.5.3-0ubuntu1
* New upstream release.
  - Metadata load is too slow (LP: #436612)
  - Out of space dialog is broken (LP: #650671)
  - Should not autoconnect when there are no credentials (LP: #701588)
  - gsd extension should not ask for sso credentials (LP: #702171) 

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
 
78
78
    oauth_credentials = property(fget=_get_credentials, fset=_set_credentials)
79
79
 
80
 
    def change_notification(self):
81
 
        self.dbus_iface.status.emit_content_queue_changed()
82
 
 
83
80
    def shutdown(self, with_restart):
84
81
        self.dbus_iface.shutdown(with_restart)
85
82
 
86
 
    def connect(self):
87
 
        self.dbus_iface.connect()
 
83
    def connect(self, *args, **kwargs):
 
84
        self.dbus_iface.connect(*args, **kwargs)