--- a/hgext3rd/evolve/evolvecmd.py Thu Mar 29 16:43:28 2018 +0530
+++ b/hgext3rd/evolve/evolvecmd.py Sat Mar 31 11:53:09 2018 +0200
@@ -1294,8 +1294,8 @@
if cleanup:
if evolvedrevs:
- strippoints = [
- c.node() for c in repo.set('roots(%ld)', evolvedrevs)]
+ strippoints = [c.node()
+ for c in repo.set('roots(%ld)', evolvedrevs)]
# updating the working directory
hg.updaterepo(repo, startnode, True)
@@ -1307,8 +1307,8 @@
evolvestate.delete()
ui.status(_('evolve aborted\n'))
- ui.status(_('working directory is now at %s\n') %\
- node.hex(startnode)[:12])
+ ui.status(_('working directory is now at %s\n')
+ % node.hex(startnode)[:12])
else:
raise error.Abort(_("unable to abort interrupted evolve, use 'hg "
"evolve --stop' to stop evolve"))