comparison hgfastimport/hgimport.py @ 49:ed66bd7bd2f6

comment
author Greg Ward <greg-hg@gerg.ca>
date Sun, 17 May 2009 18:18:13 -0400
parents 1cf21a8c274b
children 38fe4f98a3ff
comparison
equal deleted inserted replaced
48:1cf21a8c274b 49:ed66bd7bd2f6
86 else: 86 else:
87 return self.processor.commitmap[commitid] 87 return self.processor.commitmap[commitid]
88 88
89 def gettags(self): 89 def gettags(self):
90 """Return the tags as a dictionary of name: revision""" 90 """Return the tags as a dictionary of name: revision"""
91 # oops, this loses order
91 return dict(self.processor.tags) 92 return dict(self.processor.tags)
92 93
93 def getchangedfiles(self, rev, i): 94 def getchangedfiles(self, rev, i):
94 """Return the files changed by rev compared to parent[i]. 95 """Return the files changed by rev compared to parent[i].
95 96