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 merge requests found
Pipeline #22239 failed with stage
in 17 seconds
...@@ -151,7 +151,7 @@ try: ...@@ -151,7 +151,7 @@ try:
} }
except Exception as e: except Exception as e:
import warnings import warnings
warnings.warn(e) warnings.warn(str(e))
def generate_shared_object(output_folder=None, source_files=None, show_code=False): def generate_shared_object(output_folder=None, source_files=None, show_code=False):
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment