~nataliabidart/ubuntuone-control-panel/package-utils

« back to all changes in this revision

Viewing changes to ubuntuone/controlpanel/replication_client.py

  • Committer: Tarmac
  • Author(s): Natalia B. Bidart
  • Date: 2011-09-19 18:13:28 UTC
  • mfrom: (226.2.3 evo-thunderbird)
  • Revision ID: tarmac-20110919181328-v954tx4hc8jyt18m
- Removed all code related to Bookmarks (LP: #850142).
- Replaces references to "Evolution" by "Thunderbird" (LP: #849494).

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 
26
26
logger = setup_logging('replication_client')
27
27
 
28
 
BOOKMARKS = 'bookmarks'
29
28
CONTACTS = 'contacts'
30
29
# we should get this list from somewhere else
31
 
REPLICATIONS = set([BOOKMARKS, CONTACTS])
 
30
REPLICATIONS = set([CONTACTS])
32
31
 
33
32
 
34
33
class ReplicationError(Exception):