abandon: fix usage of undefined variable

As reported by pyflakes:

  subcmds/abandon.py:84: undefined name 'p'

The name of the variable should be 'proj'.

Change-Id: Ic09eb92e8db6b510e99efce010bd0bb094d7cbfe
This commit is contained in:
David Pursehouse 2017-05-26 21:52:12 +09:00
parent 06848b2415
commit c354a9b922

View File

@ -81,7 +81,7 @@ It is equivalent to "git branch -D <branchname>".
err_msg = "error: cannot abandon %s" %br err_msg = "error: cannot abandon %s" %br
print(err_msg, file=sys.stderr) print(err_msg, file=sys.stderr)
for proj in err[br]: for proj in err[br]:
print(' '*len(err_msg) + " | %s" % p.relpath, file=sys.stderr) print(' '*len(err_msg) + " | %s" % proj.relpath, file=sys.stderr)
sys.exit(1) sys.exit(1)
elif not success: elif not success:
print('error: no project has local branch(es) : %s' % nb, print('error: no project has local branch(es) : %s' % nb,