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

« back to all changes in this revision

Viewing changes to ubuntuone/syncdaemon/status_listener.py

  • Committer: Package Import Robot
  • Author(s): Rodney Dawes
  • Date: 2011-12-21 15:46:25 UTC
  • mfrom: (1.1.56)
  • Revision ID: package-import@ubuntu.com-20111221154625-ujvunri4frsecj2k
Tags: 2.99.0-0ubuntu1
* New upstream release.
  - Verify timestamp to avoid invalid auth failures (LP: #692597)
  - Files in new UDFs not uploaded due to filtering (LP: #869920)
* debian/patches:
  - Remove upstreamed patches

Show diffs side-by-side

added added

removed removed

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