~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Jelmer Vernooij
  • Date: 2008-08-03 00:36:46 UTC
  • mto: This revision was merged to the branch mainline in revision 3601.
  • Revision ID: jelmer@samba.org-20080803003646-2bss0hgb8zrjbtbk
Remove recommendation of old format when tags can't be copied.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2446
2446
class TagsNotSupported(BzrError):
2447
2447
 
2448
2448
    _fmt = ("Tags not supported by %(branch)s;"
2449
 
            " you may be able to use bzr upgrade --dirstate-tags.")
 
2449
            " you may be able to use bzr upgrade.")
2450
2450
 
2451
2451
    def __init__(self, branch):
2452
2452
        self.branch = branch