Skip to content

Commit ee384c7

Browse files
authored
fix broken implementation of version string (#1439)
1 parent a59579b commit ee384c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

trinity/utils/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def construct_trinity_client_identifier() -> str:
1515
"Trinity/"
1616
f"{__version__}/"
1717
f"{sys.platform}/"
18-
f"{sys.implementation}"
18+
f"{sys.implementation.name}"
1919
f"{sys.version_info.major}.{sys.version_info.minor}.{sys.version_info.micro}"
2020
)
2121

0 commit comments

Comments
 (0)