Skip to content

Commit

Permalink
Removed a wild print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
georgemarshall committed May 6, 2016
1 parent ea4f7e9 commit 21295a3
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion django_cryptography/fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ def validate(self, value, model_instance):
pass

def get_db_prep_lookup(self, lookup_type, *args, **kwargs):
print('===', lookup_type)
if lookup_type not in ('exact', 'in', 'isnull'):
raise TypeError('Lookup type %s is not supported.' % lookup_type)
return super(PickledField, self).get_db_prep_lookup(lookup_type, *args, **kwargs)
Expand Down

0 comments on commit 21295a3

Please sign in to comment.