From fd296fdbb09eb75a035392f15e05e47a759d2899 Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Mon, 3 May 2021 18:57:04 -0700 Subject: [PATCH] Replace call to pipeable.output with pipeable.stdout. --- voussoirkit/hms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/voussoirkit/hms.py b/voussoirkit/hms.py index 30bafcb..8389fcf 100644 --- a/voussoirkit/hms.py +++ b/voussoirkit/hms.py @@ -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:]))