Skip to content

Commit 9835841

Browse files
committed
fix: print syntax
1 parent 41737d9 commit 9835841

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

radio/util/find_clang.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def findLibClang():
8080
knownPaths = os.environ.get("PATH").split(os.pathsep)
8181
libSuffix = ".dll"
8282
else:
83-
print("findLibClang: Unsupported platform:", sys.platform)
83+
print("findLibClang - Unsupported platform:", sys.platform)
8484
return None
8585

8686
for path in knownPaths:
@@ -89,7 +89,7 @@ def findLibClang():
8989
return path
9090

9191
# If no known path is found
92-
print("findLibClang(): No known path found.")
92+
print("findLibClang - No known path found.")
9393
return None
9494

9595
def initLibClang():

0 commit comments

Comments
 (0)