Commit 8bac3dda authored by Tristan Cavelier's avatar Tristan Cavelier

Activity List does not show arguments -> fixed

parent 11e4ad4b
......@@ -58,7 +58,7 @@ if kw.get(\'processing_node\', None) == \'\':\n
del kw[\'processing_node\']\n
\n
#key_list_to_search = [x for (x,y) in [(k,kw[k]) for k in [\'uid_activity\',\'str_object_path\',\'method_id\',\'retry\',\'processing\']] if y != \'\']\n
message_kw = dict([(k,kw[k]) for k in [\'uid_activity\',\'str_object_path\',\'method_id\',\'retry\',\'processing\'] if not(kw.get(k) in (\'\',None))])\n
message_kw = dict([(k,kw[k]) for k in [\'uid_activity\',\'str_object_path\',\'method_id\',\'args\',\'retry\',\'processing\'] if not(kw.get(k) in (\'\',None))])\n
\n
message_list = context.getMessageTempObjectList(**message_kw)\n
message_list_to_show = []\n
......@@ -66,6 +66,7 @@ while len(message_list) > 0:\n
message = message_list.pop(0)\n
message.edit(str_object_path = \'/\'.join(str(i) for i in message.object_path))\n
message.edit(uid_activity = str(message.uid) + \' (\'+ message.activity[3:] +\')\')\n
message.edit(arguments = str(message.args))\n
# # search filter\n
# try:\n
# for k in key_list_to_search:\n
......
41078
\ No newline at end of file
41079
\ No newline at end of file
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