Commit cb0af585 authored by Vincent Pelletier's avatar Vincent Pelletier

Trivial changes and coding style.

parent 555b2c96
...@@ -100,7 +100,7 @@ if depth == maximum_depth and id_list:\n ...@@ -100,7 +100,7 @@ if depth == maximum_depth and id_list:\n
recurse(document[id])\n recurse(document[id])\n
if active_process is None:\n if active_process is None:\n
return error_list\n return error_list\n
if len(error_list):\n if error_list:\n
# Create an activity to update active_process,\n # Create an activity to update active_process,\n
# in order to prevent conflict errors.\n # in order to prevent conflict errors.\n
activate(active_process=active_process, priority=2) \\\n activate(active_process=active_process, priority=2) \\\n
...@@ -120,12 +120,11 @@ else:\n ...@@ -120,12 +120,11 @@ else:\n
\'portal_simulation\',\n \'portal_simulation\',\n
\'portal_templates\',\n \'portal_templates\',\n
\'portal_trash\',\n \'portal_trash\',\n
])\n ])\n
else:\n else:\n
from DateTime import DateTime\n
id_list = []\n id_list = []\n
for day_ago in xrange(hbtree_days):\n for day_ago in xrange(hbtree_days):\n
date = (DateTime()-day_ago).strftime(\'%Y%m%d\')\n date = (DateTime() - day_ago).strftime(\'%Y%m%d\')\n
try:\n try:\n
id_list += document.objectIds(base_id=date)\n id_list += document.objectIds(base_id=date)\n
except (TypeError, IndexError):\n except (TypeError, IndexError):\n
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment