projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b04143d
)
Fix an incorrect variable reference triggered when using --fix and --check
author
Jason Stubbs
<jstubbs@gentoo.org>
Sat, 24 Dec 2005 09:11:07 +0000
(09:11 -0000)
committer
Jason Stubbs
<jstubbs@gentoo.org>
Sat, 24 Dec 2005 09:11:07 +0000
(09:11 -0000)
together. Patch by Ashley Stovall. # 116576
svn path=/main/trunk/; revision=2444
bin/emaint
patch
|
blob
|
history
diff --git
a/bin/emaint
b/bin/emaint
index 617cf2a1a5b8d0c9815c2dd8c5050e9e66e13d27..2054f42c715507a48e9dc8432b24a19fc6e845cd 100755
(executable)
--- a/
bin/emaint
+++ b/
bin/emaint
@@
-67,7
+67,7
@@
def exclusive(option, unused1, unused2, unused3, var=None):
if not var:
raise ValueError("var not specified to exclusive()")
if getattr(parser, var, ""):
- raise OptionValueError("%s and %s are exclusive options" % (getattr(parser, var),
value
))
+ raise OptionValueError("%s and %s are exclusive options" % (getattr(parser, var),
option
))
setattr(parser, var, str(option))