summaryrefslogtreecommitdiff
path: root/asciidoc/__main__.py
blob: 2c9b7317a6f255c36ff6594fed882719b22f2b9b (plain)
1
2
3
4
5
6
7
try:
    from .asciidoc import cli, set_caller
except ImportError:
    raise SystemExit('ERROR: You must execute as a module using the -m flag')

set_caller(__name__)
cli()