From 85f10e70d499a1f3e7875d4d1f1fb076070fce55 Mon Sep 17 00:00:00 2001 From: Jakob Fahrner Date: Mon, 13 Dec 2021 17:55:57 +0100 Subject: [PATCH] Remove printing title at importing Because it throws error for non ascii chars in title --- trombone | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trombone b/trombone index 1c52524..e8f2b2d 100755 --- a/trombone +++ b/trombone @@ -10,7 +10,7 @@ def main(): print >>sys.stderr, 'Importing {0}\n'.format(filename) incoming = Import.Note(filename) - print >>sys.stderr, '>> Title: {0}\n'.format(incoming.title) + #print >>sys.stderr, '>> Title: {0}\n'.format(incoming.title) collection.addNote(Output.Note( title = incoming.title, lastchange = incoming.lastchange,