Skip to content

Commit

Permalink
Merge pull request #68 from GMLC-TDC/translatorName
Browse files Browse the repository at this point in the history
Correct copy-paste error for helicsTranslatorGetName
  • Loading branch information
trevorhardy authored Aug 24, 2023
2 parents 23a6d2c + 9de0708 commit a2bc598
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helics/capi.py
Original file line number Diff line number Diff line change
Expand Up @@ -7269,7 +7269,7 @@ def helicsTranslatorGetName(translator: HelicsTranslator) -> str:
**Returns**: A string with the name of the translator.
"""
f = loadSym("helicsPublicationGetName")
f = loadSym("helicsTranslatorGetName")
result = f(translator.handle)
return ffi.string(result).decode()

Expand Down

0 comments on commit a2bc598

Please sign in to comment.