mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
parent
b19a1707fb
commit
439f9b766d
1 changed files with 1 additions and 1 deletions
|
@ -109,7 +109,7 @@ class TagManager(object):
|
|||
|
||||
def split(self, tags):
|
||||
"Parse a string and return a list of tags."
|
||||
return [t for t in tags.split(" ") if t]
|
||||
return [t for t in tags.replace(u'\u3000', ' ').split(" ") if t]
|
||||
|
||||
def join(self, tags):
|
||||
"Join tags into a single string, with leading and trailing spaces."
|
||||
|
|
Loading…
Reference in a new issue