Commit afa3e381 authored by Rafael Monnerat's avatar Rafael Monnerat

If key is not available, return None.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36327 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent a4f20a91
......@@ -566,7 +566,7 @@ signature_dict = {\n
}\n
\n
if item is not None:\n
return signature_dict.get(item)\n
return signature_dict.get(item, None)\n
else:\n
return signature_dict\n
......
527
\ No newline at end of file
528
\ 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