~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/osutils.py

  • Committer: John Arbash Meinel
  • Date: 2006-05-27 01:54:40 UTC
  • mto: (1711.2.26 jam-integration)
  • mto: This revision was merged to the branch mainline in revision 1734.
  • Revision ID: john@arbash-meinel.com-20060527015440-1a10495d8e56ed5f
deprecating appendpath, it does exactly what pathjoin does

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
                           PathNotChild,
39
39
                           IllegalPath,
40
40
                           )
 
41
from bzrlib.symbol_versioning import *
41
42
from bzrlib.trace import mutter
42
43
import bzrlib.win32console
43
44
 
547
548
    return pathjoin(*p)
548
549
 
549
550
 
 
551
@deprecated_function(zero_nine)
550
552
def appendpath(p1, p2):
551
553
    if p1 == '':
552
554
        return p2