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

« back to all changes in this revision

Viewing changes to magicicadaclient/syncdaemon/sync.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:
38
38
 
39
39
from magicicadaprotocol import delta
40
40
 
41
 
from ubuntuone.syncdaemon.marker import MDMarker
42
 
from ubuntuone.syncdaemon.fsm.fsm import StateMachineRunner, StateMachine
43
 
from ubuntuone.syncdaemon import u1fsfsm
44
 
from ubuntuone.syncdaemon.logger import DebugCapture
45
 
from ubuntuone.syncdaemon.filesystem_manager import (
 
41
from magicicadaclient.syncdaemon.marker import MDMarker
 
42
from magicicadaclient.syncdaemon.fsm.fsm import StateMachineRunner, StateMachine
 
43
from magicicadaclient.syncdaemon import u1fsfsm
 
44
from magicicadaclient.syncdaemon.logger import DebugCapture
 
45
from magicicadaclient.syncdaemon.filesystem_manager import (
46
46
    DirectoryNotRemovable,
47
47
    InconsistencyError,
48
48
)
49
 
from ubuntuone.syncdaemon.volume_manager import VolumeDoesNotExist
50
 
from ubuntuone.platform import (
 
49
from magicicadaclient.syncdaemon.volume_manager import VolumeDoesNotExist
 
50
from magicicadaclient.platform import (
51
51
    stat_path,
52
52
)
53
53