Made to return empty string for the template filter get_value_from_dict instead of None
This commit is contained in:
parent
2350247cdb
commit
699326dc57
1 changed files with 1 additions and 1 deletions
|
@ -31,4 +31,4 @@ def get_value_from_dict(dict_data, key):
|
||||||
if key:
|
if key:
|
||||||
return dict_data.get(key)
|
return dict_data.get(key)
|
||||||
else :
|
else :
|
||||||
return None
|
return ""
|
||||||
|
|
Loading…
Reference in a new issue