~ralsina/ubuntuone-client/exorcize-daemon

« back to all changes in this revision

Viewing changes to ubuntuone/platform/ipc/perspective_broker.py

  • Committer: Tarmac
  • Author(s): mike.mccracken at canonical
  • Date: 2012-09-07 20:06:26 UTC
  • mfrom: (1305.2.3 fix-signal-exceptions)
  • Revision ID: tarmac-20120907200626-zk4w5fv1ojlttcp4
- Fix twisted IPC exceptions for syncdaemon status signals. (LP: #902189)

Show diffs side-by-side

added added

removed removed

Lines of Context:
305
305
        """Fire a signal to notify about a download progress."""
306
306
 
307
307
    @signal
308
 
    def DownloadFinished(self, path, *info):
 
308
    def DownloadFinished(self, path, info):
309
309
        """Fire a signal to notify that a download has finished."""
310
310
 
311
311
    @signal
317
317
        """Fire a signal to notify about an upload progress."""
318
318
 
319
319
    @signal
320
 
    def UploadFinished(self, path, *info):
 
320
    def UploadFinished(self, path, info):
321
321
        """Fire a signal to notify that an upload has finished."""
322
322
 
323
323
    @signal