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

« back to all changes in this revision

Viewing changes to bin/u1sdtool

  • 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:
1
1
#! /usr/bin/python
2
2
#
3
3
# Copyright 2009-2013 Canonical Ltd.
 
4
# Copyright 2017-2018 Chicharreros (https://launchpad.net/~chicharreros)
4
5
#
5
6
# This program is free software: you can redistribute it and/or modify it
6
7
# under the terms of the GNU General Public License version 3, as published
51
52
warnings.filterwarnings('ignore', message='.*Config(Option|Section).*',
52
53
                        category=DeprecationWarning)
53
54
 
54
 
from ubuntuone.platform.tools import (
 
55
from magicicadaclient.clientdefs import VERSION
 
56
from magicicadaclient.platform.tools import (
55
57
    SyncDaemonTool,
56
58
    is_already_running,
57
59
    show_dirty_nodes,
69
71
    show_waiting_content,
70
72
    show_waiting_metadata,
71
73
)
72
 
from ubuntuone.clientdefs import VERSION
73
74
 
74
75
 
75
76
@defer.inlineCallbacks