/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Jelmer Vernooij
  • Date: 2009-06-04 21:10:21 UTC
  • Revision ID: jelmer@samba.org-20090604211021-o3ycs1uy97mwoime
Catch NoKeyringDaemonError.

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
 
46
46
import os.path
47
47
 
48
 
version_info = (0, 97, 0, 'dev', 1)
 
48
version_info = (0, 96, 0, 'dev', 1)
49
49
 
50
50
if version_info[3] == 'final':
51
51
    version_string = '%d.%d.%d' % version_info[:3]
55
55
 
56
56
COMPATIBLE_BZR_VERSIONS = [(1, 6, 0), (1, 7, 0), (1, 8, 0), (1, 9, 0),
57
57
                           (1, 10, 0), (1, 11, 0), (1, 12, 0), (1, 13, 0),
58
 
                           (1, 15, 0),
59
 
                           (1, 17, 0),]
 
58
                           (1, 15, 0),]
60
59
 
61
60
bzrlib.api.require_any_api(bzrlib, COMPATIBLE_BZR_VERSIONS)
62
61