Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.6 #6

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
Added only_installed=True to the get_model call which provides greate…
…r stability when getting models that haven't been loaded yet.
coordt committed Apr 22, 2013
commit 55437b95dad1c02ee6930fcef0e9ec0b49c81aeb
2 changes: 1 addition & 1 deletion supertagging/__init__.py
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
'minor': 6,
'micro': 0,
'releaselevel': 'beta',
'serial': 1
'serial': 2
}


2 changes: 1 addition & 1 deletion supertagging/handlers.py
Original file line number Diff line number Diff line change
@@ -28,8 +28,8 @@ def setup_handlers():
try:
for k, v in MODULES.items():
app_label, model_name = k.split('.')
model = get_model(app_label, model_name)

model = get_model(app_label, model_name, only_installed=False)
# Add a tag attribute to the instance.
if REGISTER_MODELS:
register(model)