Commit 8b095864 authored by Bram Schoenmakers's avatar Bram Schoenmakers

Remove spurious newlines.

parent 4986593b
......@@ -123,8 +123,8 @@ class CLIApplication(object):
args = arguments(1)
command = subcommand_map[subcommand](args, self.todolist,
lambda o: write(sys.stdout, o + "\n"),
lambda e: write(sys.stderr, e + "\n"),
lambda o: write(sys.stdout, o),
lambda e: write(sys.stderr, e),
raw_input)
if command.execute() == False:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment