diff --git a/openscad_docsgen/blocks.py b/openscad_docsgen/blocks.py index 5c04c20..09e721c 100644 --- a/openscad_docsgen/blocks.py +++ b/openscad_docsgen/blocks.py @@ -418,14 +418,13 @@ def _img_proc_done(self, req): out += line + "\n" for line in req.errors: out += line + "\n" - out += "//////////////////////////////////////////////////////////////////////\n" - out += "// LibFile: {} Line: {} Image: {}\n".format( + out += "LibFile: {} Line: {} Image: {}\n".format( req.src_file, req.src_line, os.path.basename(req.image_file) ) - out += "//////////////////////////////////////////////////////////////////////\n" + out += "------------------------------------------------------------------------------\n" for line in req.script_lines: out += line + "\n" - out += "//////////////////////////////////////////////////////////////////////\n" + out += "------------------------------------------------------------------------------\n" print(out, file=sys.stderr) sys.exit(-1) diff --git a/setup.py b/setup.py index 774b670..a6f41a3 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup -VERSION = "1.0.1" +VERSION = "1.0.2" with open('README.rst') as f: @@ -19,7 +19,7 @@ author='Revar Desmera', author_email='revarbat@gmail.com', url='https://github.com/revarbat/openscad_docsgen', - download_url='https://github.com/revarbat/openscad_docsgen/archive/v1.0.1.zip', + download_url='https://github.com/revarbat/openscad_docsgen/archive/v1.0.2.zip', packages=['openscad_docsgen'], license='MIT License', classifiers=[