##// END OF EJS Templates
Subdir support for annotate
mpm@selenic.com -
r122:82fd709d default
parent child Browse files
Show More
@@ -213,7 +213,10 b' elif cmd == "annotate":'
213 213 opts = [('r', 'revision', '', 'revision')]
214 214 args = fancyopts.fancyopts(args, opts, aoptions,
215 215 'hg annotate [-r id] [files]')
216
216 217 if args:
218 if relpath: args = [ os.path.join(relpath, x) for x in args ]
219
217 220 node = repo.current
218 221 if aoptions['revision']:
219 222 node = repo.changelog.lookup(aoptions['revision'])
General Comments 0
You need to be logged in to leave comments. Login now