Skip to content

Commit

Permalink
Update libraries and interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
mkrima committed Mar 24, 2019
1 parent 9b6b652 commit 35be205
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion tps/accounts/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from django.db import models
from django.conf import settings
from tempfile import TemporaryDirectory
from gnupg import GPG
from pretty_bad_protocol.gnupg import GPG
from django.core.mail import send_mail


Expand Down
6 changes: 3 additions & 3 deletions tps/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ django-multiselectfield==0.1.4
mock==2.0.0
model-mommy==1.3.0
django-import-export
gnupg
pretty-bad-protocol
django-debug-toolbar
redis
redis==2.10.6
python-magic
pygit2
django-extensions
ansi2html==1.2.0
django-redis
django-redis<=4.7.0
2 changes: 1 addition & 1 deletion tps/tasks/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class DjangoPKJSONDecoder(JSONDecoder):
def __init__(self, object_hook=None, *args, **kwargs):
if not object_hook:
object_hook = self.pk_object_hook
super(DjangoPKJSONDecoder, self).__init__(object_hook, *args, **kwargs)
super(DjangoPKJSONDecoder, self).__init__(object_hook=object_hook, *args, **kwargs)

@staticmethod
def pk_object_hook(json_dict):
Expand Down

0 comments on commit 35be205

Please sign in to comment.