Skip to content

Commit

Permalink
[Fixes #5138] Fix blank space
Browse files Browse the repository at this point in the history
  • Loading branch information
t-book committed Oct 29, 2019
1 parent 95d4993 commit 04dc9b7
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion geonode/base/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,6 @@ def add(self, *tags):
for new_tag in str_tags - set(t.name for t in existing):
if new_tag:
new_tag = escape(new_tag)
new_tag = "".join(new_tag.split())
tag_objs.add(HierarchicalKeyword.add_root(name=new_tag))

for tag in tag_objs:
Expand Down

0 comments on commit 04dc9b7

Please sign in to comment.