summaryrefslogtreecommitdiff
path: root/ishtar/ishtar_base/forms_operations.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@peacefrogs.net>2011-09-02 20:13:11 +0200
committerÉtienne Loks <etienne.loks@peacefrogs.net>2011-09-02 20:13:11 +0200
commitaf1c007c74a36e04afd5a29b2d7d5c8e82f4e3a3 (patch)
treef6a1d026f941a49d09059ca50fbfaa57ab7c51aa /ishtar/ishtar_base/forms_operations.py
parent3ed75b037e8e79408f8eca990b80aa878f25706d (diff)
downloadIshtar-af1c007c74a36e04afd5a29b2d7d5c8e82f4e3a3.tar.bz2
Ishtar-af1c007c74a36e04afd5a29b2d7d5c8e82f4e3a3.zip
Display every steps when modifying (refs #438)
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