##// END OF EJS Templates
histedit: add tmpdir parameter to ui.edit call
Sean Farley -
r30837:f59ab1b7 default
parent child Browse files
Show More
@@ -1334,7 +1334,8 b' def ruleeditor(repo, ui, actions, editco'
1334 rules = '\n'.join([act.torule() for act in actions])
1334 rules = '\n'.join([act.torule() for act in actions])
1335 rules += '\n\n'
1335 rules += '\n\n'
1336 rules += editcomment
1336 rules += editcomment
1337 rules = ui.edit(rules, ui.username(), {'prefix': 'histedit'})
1337 rules = ui.edit(rules, ui.username(), {'prefix': 'histedit'},
1338 tmpdir=repo.path)
1338
1339
1339 # Save edit rules in .hg/histedit-last-edit.txt in case
1340 # Save edit rules in .hg/histedit-last-edit.txt in case
1340 # the user needs to ask for help after something
1341 # the user needs to ask for help after something
General Comments 0
You need to be logged in to leave comments. Login now