~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/symbol_versioning.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-09-18 16:04:54 UTC
  • mfrom: (4699.2.2 jam-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20090918160454-ag1zd9txn44prlye
(jam) Bring in a couple small patches from the 2.0 branch (such as
        the 2.0.0 fix)

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
    """Generate a message that something was deprecated in a release.
42
42
 
43
43
    >>> deprecated_in((1, 4, 0))
44
 
    '%s was deprecated in version 1.4.'
 
44
    '%s was deprecated in version 1.4.0.'
45
45
    """
46
46
    return ("%%s was deprecated in version %s."
47
47
            % bzrlib._format_version_tuple(version_tuple))