summaryrefslogtreecommitdiff
path: root/ishtar/ishtar_base/forms_operations.py
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar/ishtar_base/forms_operations.py')
-rw-r--r--ishtar/ishtar_base/forms_operations.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/ishtar/ishtar_base/forms_operations.py b/ishtar/ishtar_base/forms_operations.py
index 3227e8d84..3d149577a 100644
--- a/ishtar/ishtar_base/forms_operations.py
+++ b/ishtar/ishtar_base/forms_operations.py
@@ -519,7 +519,6 @@ class OperationSourceWizard(SourceWizard):
storage, step)
# put default index and operation_id field in the main source form
general_form_key = 'selec-' + self.url_name
- print "hop"
if step.startswith('source-') \
and self.session_has_key(request, storage, general_form_key):
gen_storage = request.session[storage.prefix]['step_data']\
@@ -528,7 +527,6 @@ class OperationSourceWizard(SourceWizard):
operation_id = int(gen_storage[general_form_key+"-operation"])
elif general_form_key+"-pk" in gen_storage:
pk = int(gen_storage[general_form_key+"-pk"])
- print pk
try:
source = models.OperationSource.objects.get(pk=pk)
operation_id = source.operation.pk