Skip to content

Instantly share code, notes, and snippets.

@tamsanh
Last active October 17, 2019 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tamsanh/17f6e135bdcdcccb5f877531ca909ad6 to your computer and use it in GitHub Desktop.
Save tamsanh/17f6e135bdcdcccb5f877531ca909ad6 to your computer and use it in GitHub Desktop.
# Argument Parser that prints its help message by default
import argparse
import sys
class HelpDefaultParser(argparse.ArgumentParser):
def error(self, message):
sys.stderr.write('error: %s\n' % message)
self.print_help()
sys.exit(2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment