Mercurial > hg
view mercurial/remoterepo.py @ 4017:ea6174c96ae1
catch AttributeError in util.checklink
There's no symlink function in the os module on windows.
Fixes issue468
author | Alexis S. L. Carvalho <alexis@cecm.usp.br> |
---|---|
date | Fri, 05 Jan 2007 00:01:51 -0200 |
parents | 345bac2bc4ec |
children | 08800489257e |
line wrap: on
line source
# remoterepo - remote repository proxy classes for mercurial # # Copyright 2005, 2006 Matt Mackall <mpm@selenic.com> # # This software may be used and distributed according to the terms # of the GNU General Public License, incorporated herein by reference. import repo class remoterepository(repo.repository): def dev(self): return -1 def local(self): return False class remotelock(object): def __init__(self, repo): self.repo = repo def release(self): self.repo.unlock() self.repo = None def __del__(self): if self.repo: self.release()