~nataliabidart/magicicada-client/fix-travis-ubuntuone-clientdefs

« back to all changes in this revision

Viewing changes to magicicadaclient/platform/filesystem_notifications/notify_processor/__init__.py

  • Committer: Magicicada Bot
  • Author(s): Natalia
  • Date: 2018-05-30 23:22:37 UTC
  • mfrom: (1444.1.1 trunk)
  • Revision ID: magicicada_bot-20180530232237-caww40vavif7wf97
[r=facundo] - Rename python package to magicicadaclient.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
import sys
32
32
 
33
33
if sys.platform in ('win32', 'darwin'):
34
 
    from ubuntuone.platform.filesystem_notifications.notify_processor import (
 
34
    from magicicadaclient.platform.filesystem_notifications.notify_processor import (
35
35
        common,
36
36
    )
37
37
    # workaround due to pyflakes :(
38
38
    source = common
39
39
else:
40
 
    from ubuntuone.platform.filesystem_notifications.notify_processor import (
 
40
    from magicicadaclient.platform.filesystem_notifications.notify_processor import (
41
41
        linux,
42
42
    )
43
43
    # workaround due to pyflakes :(