/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: Aaron Bentley
  • Date: 2007-06-12 13:49:07 UTC
  • Revision ID: abentley@panoramicfeedback.com-20070612134907-77hpbkqt7w9mshrq
Don't warn if bzrlib is dev version of next release

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
    """
31
31
    desired_plus = (desired[0], desired[1]+1)
32
32
    bzrlib_version = bzrlib.version_info[:2]
33
 
    if bzrlib_version == desired:
 
33
    if bzrlib_version == desired or (bzrlib_version == desired_plus and
 
34
                                     bzrlib.version_info[3] == 'dev'):
34
35
        return
35
36
    try:
36
37
        from bzrlib.trace import warning