From 5aabbb781289188c613815940de137204e781221 Mon Sep 17 00:00:00 2001 From: seinfield Date: Sat, 6 Dec 2014 06:33:13 -0500 Subject: [PATCH] Update Journal.py --- jrnl/Journal.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/jrnl/Journal.py b/jrnl/Journal.py index d4b38ec7..2a56a9d9 100644 --- a/jrnl/Journal.py +++ b/jrnl/Journal.py @@ -115,14 +115,12 @@ class Journal(object): def get_date_length(myline): j='' - print 'myproc line is: ' + myline for i in [x for x in myline.split(' ') ]: try: dateutil.parser.parse(j+' ' +i) j=j+' ' +i except: break - print 'j is ' + j return len(j.strip()) # Entries start with a line that looks like 'date title' - let's figure out how