We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2562166 commit 7880fbaCopy full SHA for 7880fba
1 file changed
scorep/helper.py
@@ -4,9 +4,9 @@
4
import re
5
6
7
-def print_err(*args, **kwargs):
+def print_err(*args):
8
"""Print to stderr"""
9
- print(*args, file=sys.stderr, **kwargs)
+ sys.stderr.write(' '.join(map(str, args)) + '\n')
10
11
12
def call(arguments):
0 commit comments