We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7639082 commit bd31f97Copy full SHA for bd31f97
commons.py
@@ -4,6 +4,7 @@
4
a tool to monitor projects that follow the guidelines in this project
5
"""
6
7
+import sys
8
import os
9
import hashlib
10
from datetime import datetime as DateTime
@@ -91,7 +92,7 @@ def spot_common(seed):
91
92
for common in COMMONS:
93
if seed in common:
94
return common
- print(f"WARNING: could not spot a common file with seed {seed}, using it verbatim")
95
+ print(f"WARNING: could not spot a common file with seed {seed}, using it verbatim", file=sys.stderr)
96
return seed
97
98
0 commit comments