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

« back to all changes in this revision

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

  • Committer: Natalia
  • Date: 2018-05-19 20:44:54 UTC
  • mto: This revision was merged to the branch mainline in revision 1445.
  • Revision ID: natalia.bidart@ubuntu.com-20180519204454-fliiqyexj67r7fp9
- Rename python package to magicicadaclient.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
import os
32
32
import sys
33
33
 
34
 
from ubuntuone.syncdaemon.filesystem_notifications import (
 
34
from magicicadaclient.syncdaemon.filesystem_notifications import (
35
35
    GeneralINotifyProcessor,
36
36
)
37
 
from ubuntuone.platform.filesystem_notifications.pyinotify_agnostic import (
 
37
from magicicadaclient.platform.filesystem_notifications.pyinotify_agnostic import (
38
38
    Event,
39
39
    ProcessEvent,
40
40
    IN_OPEN,
48
48
    IN_MOVED_TO,
49
49
)
50
50
 
51
 
from ubuntuone.platform.os_helper import (
 
51
from magicicadaclient.platform.os_helper import (
52
52
    is_valid_syncdaemon_path,
53
53
)
54
54