Made to return empty string for the template filter get_value_from_dict instead of None

This commit is contained in:
PCoder 2017-06-30 12:33:28 +05:30
parent 2350247cdb
commit 699326dc57
1 changed files with 1 additions and 1 deletions

View File

@ -31,4 +31,4 @@ def get_value_from_dict(dict_data, key):
if key:
return dict_data.get(key)
else :
return None
return ""