Skip to content

Commit

Permalink
Pin DRF to known working version (#595)
Browse files Browse the repository at this point in the history
* Pin DRF to known working version

* Fix datetime format string typo
  • Loading branch information
annehaley authored Sep 23, 2022
1 parent e369b93 commit a5e57c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion miqa/core/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ def perform_import(import_dict):
if last_decision_dict['created']:
valid_dt = dateparser.parse(last_decision_dict['created'])
if valid_dt:
created = valid_dt.strftime('%Y-%m-%d %H:$M')
created = valid_dt.strftime('%Y-%m-%d %H:%M')
if last_decision_dict['location'] and last_decision_dict['location'] != '':
slices = [
axis.split('=')[1]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
'django-extensions',
'django-filter',
'django-oauth-toolkit',
'djangorestframework',
'djangorestframework==3.13.1', # https://github.com/axnsan12/drf-yasg/issues/810
'django-click',
'django-guardian',
'drf-yasg',
Expand Down

0 comments on commit a5e57c6

Please sign in to comment.