We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95ebe6b commit 382ec6eCopy full SHA for 382ec6e
hifi_singleton.py
@@ -46,7 +46,7 @@ def __enter__(self):
46
self.fh = None
47
# print is horked here so write directly to stdout.
48
with open(1, mode="w", closefd=False) as _stdout:
49
- _stdout.write("Couldn't aquire lock, retrying in 10 seconds\n")
+ _stdout.write(f"Couldn't aquire lock {self.path}, retrying in 10 seconds\n")
50
_stdout.flush()
51
time.sleep(10)
52
return self
0 commit comments