We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7afb24 commit 1680f75Copy full SHA for 1680f75
schemascii/__main__.py
@@ -47,7 +47,7 @@ def cli_main():
47
try:
48
result_svg = render(args.in_file, text, **vars(args))
49
except Error as err:
50
- print(repr(err), file=sys.stderr)
+ print(err, file=sys.stderr)
51
sys.exit(1)
52
if args.out_file == "-":
53
print(result_svg)
setup.py
@@ -1,2 +1,4 @@
1
from setuptools import setup
2
-setup()
+setup(
3
+ packages=["schemascii"]
4
+)
0 commit comments