Skip to content

Commit 4300be3

Browse files
authored
Fix print picking tox env on CI (#166)
1 parent a7ce742 commit 4300be3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
run: |
4141
import codecs; import os; import sys
4242
env = f"TOXENV=py3{sys.version_info[1]}\n"
43-
print("Picked:\n{env}for{sys.version}")
43+
print(f"Picked:\n{env}for{sys.version}")
4444
with codecs.open(os.environ["GITHUB_ENV"], "a", "utf-8") as file_handler:
4545
file_handler.write(env)
4646
shell: python

0 commit comments

Comments
 (0)