Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update IPython/core/magic_arguments.py
Remove references to 'version' no longer in argparse. Github issue #2343.
  • Loading branch information
andrewspiers authored and crbates committed Jul 1, 2013
1 parent 83c4f72 commit 738770b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions IPython/core/magic_arguments.py
Expand Up @@ -66,7 +66,6 @@ def __init__(self,
usage=None,
description=None,
epilog=None,
version=None,
parents=None,
formatter_class=MagicHelpFormatter,
prefix_chars='-',
Expand All @@ -76,7 +75,7 @@ def __init__(self,
if parents is None:
parents = []
super(MagicArgumentParser, self).__init__(prog=prog, usage=usage,
description=description, epilog=epilog, version=version,
description=description, epilog=epilog,
parents=parents, formatter_class=formatter_class,
prefix_chars=prefix_chars, argument_default=argument_default,
conflict_handler=conflict_handler, add_help=add_help)
Expand Down

0 comments on commit 738770b

Please sign in to comment.