From c4d30a20d91065e969238c2c7237804671743158 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Fri, 21 Nov 2008 00:22:23 +0900 Subject: [PATCH] remove mergeTags() --- anki/utils.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/anki/utils.py b/anki/utils.py index c0ab7718f..190108293 100644 --- a/anki/utils.py +++ b/anki/utils.py @@ -102,10 +102,6 @@ def _pluralCount(time): return 1 return 2 -def mergeTags(*args): - "Merge tag lists into a single string." - return ", ".join(set(parseTags(",".join(args)))) - def parseTags(tags): "Parse a string and return a list of tags." tags = tags.split(",")