equal
deleted
inserted
replaced
293 |
293 |
294 if c and ctags: |
294 if c and ctags: |
295 nrev = self.dest.puttags(ctags) |
295 nrev = self.dest.puttags(ctags) |
296 # write another hash correspondence to override the previous |
296 # write another hash correspondence to override the previous |
297 # one so we don't end up with extra tag heads |
297 # one so we don't end up with extra tag heads |
298 file(self.mapfile, "a").write("%s %s\n" % (c, nrev)) |
298 if nrev: |
|
299 file(self.mapfile, "a").write("%s %s\n" % (c, nrev)) |
299 |
300 |
300 gitpath, hgpath, mapfile = sys.argv[1:] |
301 gitpath, hgpath, mapfile = sys.argv[1:] |
301 if os.path.isdir(gitpath + "/.git"): |
302 if os.path.isdir(gitpath + "/.git"): |
302 gitpath += "/.git" |
303 gitpath += "/.git" |
303 |
304 |