Replace call to pipeable.output with pipeable.stdout.

master
voussoir 2021-05-03 18:57:04 -07:00
parent 44271a56c4
commit fd296fdbb0
No known key found for this signature in database
GPG Key ID: 5F7554F8C26DACCB
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ def main(args):
if line > 60:
line = seconds_to_hms(line)
pipeable.output(f'{line}')
pipeable.stdout(f'{line}')
if __name__ == '__main__':
raise SystemExit(main(sys.argv[1:]))