We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e369b93 commit a5e57c6Copy full SHA for a5e57c6
2 files changed
miqa/core/tasks.py
@@ -222,7 +222,7 @@ def perform_import(import_dict):
222
if last_decision_dict['created']:
223
valid_dt = dateparser.parse(last_decision_dict['created'])
224
if valid_dt:
225
- created = valid_dt.strftime('%Y-%m-%d %H:$M')
+ created = valid_dt.strftime('%Y-%m-%d %H:%M')
226
if last_decision_dict['location'] and last_decision_dict['location'] != '':
227
slices = [
228
axis.split('=')[1]
setup.py
@@ -45,7 +45,7 @@
45
'django-extensions',
46
'django-filter',
47
'django-oauth-toolkit',
48
- 'djangorestframework',
+ 'djangorestframework==3.13.1', # https://github.com/axnsan12/drf-yasg/issues/810
49
'django-click',
50
'django-guardian',
51
'drf-yasg',
0 commit comments