File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ def auto_configure_backend_factory(self):
145
145
self .backend_factory = import_member (settings .DOWNLOADVIEW_BACKEND )
146
146
except AttributeError :
147
147
raise ImproperlyConfigured (
148
- "SmartDownloadMiddleware requires " " settings.DOWNLOADVIEW_BACKEND"
148
+ "SmartDownloadMiddleware requires settings.DOWNLOADVIEW_BACKEND"
149
149
)
150
150
151
151
def auto_configure_backend_options (self ):
@@ -155,7 +155,7 @@ def auto_configure_backend_options(self):
155
155
options_list = copy .deepcopy (settings .DOWNLOADVIEW_RULES )
156
156
except AttributeError :
157
157
raise ImproperlyConfigured (
158
- "SmartDownloadMiddleware requires " " settings.DOWNLOADVIEW_RULES"
158
+ "SmartDownloadMiddleware requires settings.DOWNLOADVIEW_RULES"
159
159
)
160
160
for key , options in enumerate (options_list ):
161
161
args = []
Original file line number Diff line number Diff line change @@ -141,5 +141,5 @@ def test_nginx_x_accel_redirect_global_settings(self):
141
141
if missed_warnings :
142
142
self .fail (
143
143
f"No DeprecationWarning raised about following settings: "
144
- f' { ", " .join (missed_warnings )} .'
144
+ f" { ', ' .join (missed_warnings )} ."
145
145
)
You can’t perform that action at this time.
0 commit comments