/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/transform.py

Deprecate LockableFiles.controlfilename

Show diffs side-by-side

added added

removed removed

Lines of Context:
1148
1148
        tree.lock_tree_write()
1149
1149
 
1150
1150
        try:
1151
 
            control_files = tree._control_files
1152
1151
            limbodir = urlutils.local_path_from_url(
1153
 
                control_files.controlfilename('limbo'))
 
1152
                tree._transport.abspath('limbo'))
1154
1153
            try:
1155
1154
                os.mkdir(limbodir)
1156
1155
            except OSError, e:
1157
1156
                if e.errno == errno.EEXIST:
1158
1157
                    raise ExistingLimbo(limbodir)
1159
1158
            deletiondir = urlutils.local_path_from_url(
1160
 
                control_files.controlfilename('pending-deletion'))
 
1159
                tree._transport.abspath('pending-deletion'))
1161
1160
            try:
1162
1161
                os.mkdir(deletiondir)
1163
1162
            except OSError, e: