From 468ddada56298acafb54e839de98aff29e078f58 Mon Sep 17 00:00:00 2001 From: Brandon King Date: Thu, 3 Sep 2009 22:10:47 +0000 Subject: [PATCH] wsgi print error fixed. --- htsworkflow/frontend/inventory/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htsworkflow/frontend/inventory/models.py b/htsworkflow/frontend/inventory/models.py index 971c50e..dfeb7db 100644 --- a/htsworkflow/frontend/inventory/models.py +++ b/htsworkflow/frontend/inventory/models.py @@ -23,7 +23,7 @@ def _assign_uuid(sender, instance, **kwargs): """ Assigns a UUID to model on save """ - print 'Entered _assign_uuid' + #print 'Entered _assign_uuid' if instance.uuid is None or len(instance.uuid) != 32: instance.uuid = uuid.uuid1().hex -- 2.30.2