Skip to content
Snippets Groups Projects
Commit 88fd8495 authored by Stephan Seitz's avatar Stephan Seitz
Browse files

Bugfix: warnings.warn(e) -> warnings.warn(str(e)) in codegen.py

parent c6eac1e2
No related branches found
No related tags found
No related merge requests found
Pipeline #22239 failed
......@@ -151,7 +151,7 @@ try:
}
except Exception as e:
import warnings
warnings.warn(e)
warnings.warn(str(e))
def generate_shared_object(output_folder=None, source_files=None, show_code=False):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment