File: __init__.py

package info (click to toggle)
ocrodjvu 0.7.18-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,672 kB
  • ctags: 502
  • sloc: python: 3,535; xml: 941; makefile: 14; sh: 13
file content (11 lines) | stat: -rw-r--r-- 250 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
from .. import utils

try:
    import argparse
except ImportError, ex:
    utils.enhance_import_error(ex, 'argparse', 'python-argparse', 'https://code.google.com/p/argparse/')
    raise

argparse.ArgumentParser # quieten pyflakes

# vim:ts=4 sw=4 et