# HG changeset patch # User Adrian Buehlmann # Date 1304792552 -7200 # Node ID e3649bcca3f6e526d0acec27e547730f27176dd5 # Parent 00a881581400fca21b332e3344eecf0475a7b7ce opener: rename _can_symlink to _cansymlink diff -r 00a881581400 -r e3649bcca3f6 mercurial/scmutil.py --- a/mercurial/scmutil.py Sun May 08 17:48:31 2011 +0200 +++ b/mercurial/scmutil.py Sat May 07 20:22:32 2011 +0200 @@ -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: