diff options
author | Steven Bethard <steven.bethard@gmail.com> | 2011-04-04 00:10:40 (GMT) |
---|---|---|
committer | Steven Bethard <steven.bethard@gmail.com> | 2011-04-04 00:10:40 (GMT) |
commit | 7c8ea37d9bc66db3e6ea0b6a90c3f8b3deafaac1 (patch) | |
tree | 2527a6043a85daff4ec4cec4e41c65547c00b73a /Lib/argparse.py | |
parent | fc2e3763c81ab6a2b25308046bc42bab12afeb69 (diff) | |
parent | 7cb20a8605d79faae64cccf8bbe8418b492f0e30 (diff) | |
download | cpython-7c8ea37d9bc66db3e6ea0b6a90c3f8b3deafaac1.zip cpython-7c8ea37d9bc66db3e6ea0b6a90c3f8b3deafaac1.tar.gz cpython-7c8ea37d9bc66db3e6ea0b6a90c3f8b3deafaac1.tar.bz2 |
Issue #9347: Fix formatting for tuples in argparse type= error messages.
Diffstat (limited to 'Lib/argparse.py')
-rw-r--r-- | Lib/argparse.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/argparse.py b/Lib/argparse.py index 79f1fe5..0658472 100644 --- a/Lib/argparse.py +++ b/Lib/argparse.py @@ -1312,13 +1312,13 @@ class _ActionsContainer(object): # create the action object, and add it to the parser action_class = self._pop_action_class(kwargs) if not _callable(action_class): - raise ValueError('unknown action "%s"' % action_class) + raise ValueError('unknown action "%s"' % (action_class,)) action = action_class(**kwargs) # raise an error if the action type is not callable type_func = self._registry_get('type', action.type, action.type) if not _callable(type_func): - raise ValueError('%r is not callable' % type_func) + raise ValueError('%r is not callable' % (type_func,)) # raise an error if the metavar does not match the type if hasattr(self, "_get_formatter"): |