Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
CIRCLE
/
django-taggit
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Wiki
Members
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
d72afae0
authored
Apr 05, 2010
by
Frank Wiles
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed suggest_tags() to properly use the ORM
parent
b91417b0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
5 deletions
+1
-5
taggit/contrib/suggest/utils.py
+1
-5
No files found.
taggit/contrib/suggest/utils.py
View file @
d72afae0
...
@@ -47,8 +47,4 @@ def suggest_tags(content=None):
...
@@ -47,8 +47,4 @@ def suggest_tags(content=None):
suggested_regexps
=
_suggest_regexps
(
content
)
suggested_regexps
=
_suggest_regexps
(
content
)
suggested_tag_ids
=
suggested_keywords
|
suggested_regexps
suggested_tag_ids
=
suggested_keywords
|
suggested_regexps
# Turn the found IDs into tags
return
Tag
.
objects
.
filter
(
id__in
=
suggested_tag_ids
)
where_string
=
'id IN (
%
s)'
%
','
.
join
([
str
(
x
)
for
x
in
suggested_tag_ids
])
tags
=
Tag
.
objects
.
extra
(
where
=
[
where_string
])
return
tags
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment