8ca1c9929313

Change a variable name to match the rest.
[view raw] [browse files]
author Steve Losh <steve@stevelosh.com>
date Fri, 23 Apr 2010 10:16:09 -0400
parents 82a4a9aba8f6
children d3e15364de2e
branches/tags (none)
files prompt.py

Changes

--- a/prompt.py	Thu Apr 22 11:49:12 2010 -0400
+++ b/prompt.py	Fri Apr 23 10:16:09 2010 -0400
@@ -181,7 +181,7 @@
         
         patches = repo.mq.series
         applied = [p.name for p in repo.mq.applied]
-        unapplied = filter(lambda x: x not in applied, patches)
+        unapplied = filter(lambda p: p not in applied, patches)
         
         if _get_filter('hide_applied', g):
             patches = filter(lambda p: p not in applied, patches)