/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 breezy/transport/fakevfat.py

  • Committer: Jelmer Vernooij
  • Date: 2017-05-22 00:56:52 UTC
  • mfrom: (6621.2.26 py3_pokes)
  • Revision ID: jelmer@jelmer.uk-20170522005652-yjahcr9hwmjkno7n
Merge Python3 porting work ('py3 pokes')

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
 
43
43
import re
44
44
 
45
 
from breezy.transport import decorator
 
45
from . import decorator
46
46
 
47
47
 
48
48
# TODO: It might be nice if these hooks were available in a more general way
88
88
        return self._decorated.get(self._squash_name(relpath))
89
89
 
90
90
    def mkdir(self, relpath, mode=None):
91
 
        return self._decorated.mkdir(self._squash_name(relpath), 0755)
 
91
        return self._decorated.mkdir(self._squash_name(relpath), 0o755)
92
92
 
93
93
    def has(self, relpath):
94
94
        return self._decorated.has(self._squash_name(relpath))