Commit 6daca2f3 authored by Andrew M. Kuchling's avatar Andrew M. Kuchling

Use correct variable name

parent 27487d75
......@@ -275,7 +275,7 @@ class FancyGetopt:
if not self.takes_arg[opt]: # boolean option?
if val != '': # shouldn't have a value!
raise DistutilsInternalError, \
"this can't happen: bad option value '%s'" % value
"this can't happen: bad option value '%s'" % val
alias = self.negative_alias.get(opt)
if alias:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment