comparison hgext/convert/gnuarch.py @ 15381:c519cd8f0169 stable

backout dbdb777502dc (issue3077) (issue3071) Using util.realpath turns out to create complex issues on both Mac and Windows. Back this change out for the release.
author Matt Mackall <mpm@selenic.com>
date Sat, 29 Oct 2011 11:02:23 -0500
parents dbdb777502dc
children fc24c10424d2
comparison
equal deleted inserted replaced
15380:a53888685a6c 15381:c519cd8f0169
44 else: 44 else:
45 raise util.Abort(_('cannot find a GNU Arch tool')) 45 raise util.Abort(_('cannot find a GNU Arch tool'))
46 46
47 commandline.__init__(self, ui, self.execmd) 47 commandline.__init__(self, ui, self.execmd)
48 48
49 self.path = util.realpath(path) 49 self.path = os.path.realpath(path)
50 self.tmppath = None 50 self.tmppath = None
51 51
52 self.treeversion = None 52 self.treeversion = None
53 self.lastrev = None 53 self.lastrev = None
54 self.changes = {} 54 self.changes = {}