From 9ee0285b485ac09a9407c4046107486cdb16c8c0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Karl=20Hasselstr=C3=B6m?= Date: Mon, 28 Jan 2008 22:20:09 +0100 Subject: [PATCH] Eliminate temp variable that's used just once MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Karl Hasselström --- stgit/lib/transaction.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/stgit/lib/transaction.py b/stgit/lib/transaction.py index 809eabf..6a2ed81 100644 --- a/stgit/lib/transaction.py +++ b/stgit/lib/transaction.py @@ -174,7 +174,6 @@ class StackTransaction(object): """Attempt to push the named patch. If this results in conflicts, halts the transaction. If index+worktree are given, spill any conflicts to them.""" - i = self.unapplied.index(pn) cd = self.patches[pn].data cd = cd.set_committer(None) s = ['', ' (empty)'][cd.is_nochange()] @@ -203,7 +202,7 @@ class StackTransaction(object): s = ' (conflict)' cd = cd.set_tree(tree) self.patches[pn] = self.__stack.repository.commit(cd) - del self.unapplied[i] + del self.unapplied[self.unapplied.index(pn)] self.applied.append(pn) out.info('Pushed %s%s' % (pn, s)) if merge_conflict: -- 2.11.0