summaryrefslogtreecommitdiff
path: root/argparse.py
diff options
context:
space:
mode:
authorsteven.bethard <devnull@localhost>2009-09-30 17:59:42 +0000
committersteven.bethard <devnull@localhost>2009-09-30 17:59:42 +0000
commit7cc6c3f3317aebace4fe1e10dc926a9bf595c4f0 (patch)
treecd722369ca53846c7334cce6fd009d1e6b652441 /argparse.py
parent422ca3895a20c76e5a51eb170e23fc667b4701d7 (diff)
downloadargparse-7cc6c3f3317aebace4fe1e10dc926a9bf595c4f0.tar.gz
Add missing comma in __all__ declaration.
Diffstat (limited to 'argparse.py')
-rw-r--r--argparse.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/argparse.py b/argparse.py
index 4ff6f88..2ba966c 100644
--- a/argparse.py
+++ b/argparse.py
@@ -84,7 +84,7 @@ __all__ = [
'FileType',
'HelpFormatter',
'RawDescriptionHelpFormatter',
- 'RawTextHelpFormatter'
+ 'RawTextHelpFormatter',
'ArgumentDefaultsHelpFormatter',
]