Skip to content

Commit

Permalink
Fix #236: Potential issue when django-taggit is not installed.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpic committed Jan 21, 2014
1 parent 8444cd0 commit 4ce515a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autocomplete_light/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
try:
from taggit.managers import TaggableManager
except ImportError:
TaggableManager = None
class TaggableManager(object): pass

from .registry import registry as default_registry
from .fields import (ModelChoiceField, ModelMultipleChoiceField,
Expand Down

0 comments on commit 4ce515a

Please sign in to comment.