Skip to content

Commit

Permalink
fix realtime log artefact
Browse files Browse the repository at this point in the history
  • Loading branch information
scottgigante committed Aug 31, 2017
1 parent 05b82d2 commit b4160e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion picopore/realtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def __init__(self, args):
_, name = chooseCompressFunc(self.revert, self.mode, self.fastq, self.summary, self.manual, realtime=True)
log(name + "...",end='')
if self.y:
print()
log()
elif checkSure():
self.y = True
else:
Expand Down
2 changes: 1 addition & 1 deletion picopore/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import sys
import re

def log(message, end='\n'):
def log(message='', end='\n'):
print(message, end=end)
sys.stdout.flush()

Expand Down

0 comments on commit b4160e6

Please sign in to comment.