src/eric7/Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/HgCloseHeadSelectionDialog.py

branch
eric7
changeset 10690
fab36645aa7d
parent 10439
21c28b0f9e41
child 11090
f5f5f5803935
equal deleted inserted replaced
10689:3ede487187f2 10690:fab36645aa7d
58 args.append("--template") 58 args.append("--template")
59 args.append("{node|short}@@@{branches}\n") 59 args.append("{node|short}@@@{branches}\n")
60 60
61 output = "" 61 output = ""
62 client = vcs.getClient() 62 client = vcs.getClient()
63 output, error = client.runcommand(args) 63 output, _error = client.runcommand(args)
64 64
65 heads = [] 65 heads = []
66 if output: 66 if output:
67 for line in output.splitlines(): 67 for line in output.splitlines():
68 line = line.strip() 68 line = line.strip()

eric ide

mercurial