mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Use correct variable name
This commit is contained in:
parent
42a8c2b221
commit
affadeb9fd
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue