Skip to content

Commit 05e32fb

Browse files
Change the log messages
1 parent a6a8b66 commit 05e32fb

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Diff for: helper.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ def callback(indata, frames, time, status):
2525
while True:
2626
file.write(q.get())
2727
except KeyboardInterrupt:
28-
print('\n Recording finished: ' + repr(filename))
28+
print('\nRecording finished: ' + repr(filename))
2929
print('\n')
3030
return 0

Diff for: recorder.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@
4040

4141
for text in sorted(os.listdir(inp)):
4242
while True:
43-
print('press n to record ' + text + ' or q to quit')
43+
print('press n to record ' +
44+
os.path.join(inp, text) + ' or q to quit')
4445
ans = input()
4546
if ans == "n":
4647
break

0 commit comments

Comments
 (0)