Skip to content
Snippets Groups Projects
Commit e3649bcc authored by Adrian Buehlmann's avatar Adrian Buehlmann
Browse files

opener: rename _can_symlink to _cansymlink

parent 00a88158
No related merge requests found
......@@ -176,7 +176,7 @@
self._trustnlink = None
@util.propertycache
def _can_symlink(self):
def _cansymlink(self):
return util.checklink(self.base)
def _fixfilemode(self, name):
......@@ -243,7 +243,7 @@
if not os.path.exists(dirname):
util.makedirs(dirname, self.createmode)
if self._can_symlink:
if self._cansymlink:
try:
os.symlink(src, linkname)
except OSError, err:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment