/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/osutils.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-12-18 19:20:43 UTC
  • mfrom: (3123.1.3 jam-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20071218192043-bxigzty67cddkj7z
(jam) Update zero_ninetythree => one_zero, add one_one deprecation

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
from bzrlib import symbol_versioning
58
58
from bzrlib.symbol_versioning import (
59
59
    deprecated_function,
60
 
    zero_ninetythree,
 
60
    one_zero,
61
61
    )
62
62
from bzrlib.trace import mutter
63
63
 
468
468
        return pathjoin(F(p), e)
469
469
 
470
470
 
471
 
@deprecated_function(zero_ninetythree)
 
471
@deprecated_function(one_zero)
472
472
def backup_file(fn):
473
473
    """Copy a file to a backup.
474
474