From a8dc915852ff24ad151def5d70389090160e0608 Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Fri, 12 Dec 2008 23:37:40 -0800 Subject: [PATCH] Removing debugging prints. --- controller/Notebooks.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/controller/Notebooks.py b/controller/Notebooks.py index 31908b8..949a9f9 100644 --- a/controller/Notebooks.py +++ b/controller/Notebooks.py @@ -741,9 +741,7 @@ class Notebooks( object ): # if the note is already in the given notebook, load it and update it if note and note.notebook_id == notebook.object_id: - print "LOADING OLD NOTE..." old_note = self.__database.load( Note, note_id, previous_revision ) - print "OLD NOTE: %s" % old_note previous_user = self.__database.load( User, note.user_id ) previous_revision = User_revision( note.revision, note.user_id, previous_user and previous_user.username or None )