~ubuntu-branches/ubuntu/precise/ubuntuone-client/precise-201112142106

« back to all changes in this revision

Viewing changes to ubuntuone/syncdaemon/status_listener.py

  • Committer: Bazaar Package Importer
  • Author(s): Rodney Dawes
  • Date: 2011-08-09 12:47:56 UTC
  • mfrom: (1.1.53 upstream)
  • Revision ID: james.westby@ubuntu.com-20110809124756-7nzilp3oix0a1yl9
Tags: 1.7.1-0ubuntu1
* New upstream release.
* debian/*:
  - Removed obsolete pycompat file
  - Removed ubuntuone-client-gnome deps and binary packaging, as it was
    moved out to separate project upstream.
  - Updated copyright to remove obsolete file reference
* debian/patches:
  - Removed patches which have been included upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
    def handle_AQ_UPLOAD_FILE_PROGRESS(self, share_id, node_id,
78
78
                                       n_bytes_written, deflated_size):
79
79
        """Progress has been made on an upload."""
80
 
        self.status_frontend.progress_made(share_id, node_id, n_bytes_written)
 
80
        self.status_frontend.progress_made(
 
81
            share_id, node_id, n_bytes_written, deflated_size)
81
82
 
82
83
    def handle_AQ_DOWNLOAD_FILE_PROGRESS(self, share_id, node_id,
83
84
                                         n_bytes_written, deflated_size):
84
85
        """Progress has been made on an upload."""
85
 
        self.status_frontend.progress_made(share_id, node_id, n_bytes_written)
 
86
        self.status_frontend.progress_made(
 
87
            share_id, node_id, n_bytes_written, deflated_size)
86
88
    # pylint: enable=W0613
87
89
 
88
90
    def handle_SYS_QUEUE_ADDED(self, command):