##// END OF EJS Templates
remotefilelog: honor the `--format` arg of the `debugindex` command...
Matt Harbison -
r52712:438f4fca default
parent child Browse files
Show More
@@ -115,7 +115,7 b' def debugindex(orig, ui, repo, file_=Non'
115 r = buildtemprevlog(repo, file_)
115 r = buildtemprevlog(repo, file_)
116
116
117 # debugindex like normal
117 # debugindex like normal
118 format = opts.get(b'format', 0)
118 format = opts.get('format', 0)
119 if format not in (0, 1):
119 if format not in (0, 1):
120 raise error.Abort(_(b"unknown format %d") % format)
120 raise error.Abort(_(b"unknown format %d") % format)
121
121
General Comments 0
You need to be logged in to leave comments. Login now