~mandel/ubuntuone-client/sdtool_start_method

« back to all changes in this revision

Viewing changes to ubuntuone/platform/windows/tools.py

  • Committer: Manuel de la Pena
  • Date: 2011-06-23 16:33:20 UTC
  • Revision ID: mandel@themacaque.com-20110623163320-ga24bvlyz31lo15x
Fixed lint issues and comments from reviews.

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
        return False
48
48
 
49
49
 
50
 
class ErrorSignal(Exception):
51
 
    pass
52
 
 
53
 
 
54
50
class SyncDaemonTool(object):
55
51
    """Various utility methods to test/play with the SyncDaemon."""
56
52
 
321
317
        @param signal_error: the will fire the deferred's errback
322
318
        @param dbus_iface: the interface the signal belongs to
323
319
        """
324
 
        raise Exception('Not implemented yet!')
 
320
        raise NotImplementedError('Not implemented yet!')
325
321
 
326
322
    def create_folder(self, path):
327
323
        """Create a user defined folder in the specified path."""
406
402
        used to fire the deferred callback.
407
403
 
408
404
        """
409
 
        raise Exception('Not implemented.')
 
405
        raise NotImplementedError('Not implemented.')
410
406
 
411
407
    def connect(self):
412
408
        """Connect syncdaemon."""