##// END OF EJS Templates
journal: do not pass in repolookuperror string to template (BC)...
Yuya Nishihara -
r39739:2fb88fa2 default
parent child Browse files
Show More
@@ -514,7 +514,7 b' def journal(ui, repo, *args, **opts):'
514 ctx = repo[hash]
514 ctx = repo[hash]
515 displayer.show(ctx)
515 displayer.show(ctx)
516 except error.RepoLookupError as e:
516 except error.RepoLookupError as e:
517 fm.write('repolookuperror', "%s\n\n", pycompat.bytestr(e))
517 fm.plain("%s\n\n" % pycompat.bytestr(e))
518 displayer.close()
518 displayer.close()
519
519
520 fm.end()
520 fm.end()
General Comments 0
You need to be logged in to leave comments. Login now