IAP GITLAB

Skip to content
Snippets Groups Projects
Commit 71160966 authored by Maximilian Reininghaus's avatar Maximilian Reininghaus :vulcan:
Browse files

fixed bug in code_generator.py (trailing "_")

parent 242c1280
No related branches found
No related tags found
1 merge request!427Resolve "upgrade pythia to version 8.3xx"
...@@ -149,7 +149,7 @@ def c_identifier_camel(name): ...@@ -149,7 +149,7 @@ def c_identifier_camel(name):
break break
else: else:
name = tmp name = tmp
name.strip("_") name = name.strip("_")
# remove all "_", if this does not by accident concatenate two numbers # remove all "_", if this does not by accident concatenate two numbers
istart = 0 istart = 0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment