Skip to content

Commit 538c849

Browse files
committed
Add proper whitespace in WSGIScript
1 parent 9f05837 commit 538c849

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webware/Scripts/MakeAppWorkDir.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def setLibDirs(self):
163163
self.msg(f'\tWarning: Unexpected WSGI script')
164164
else:
165165
script = script.replace(
166-
'libDirs = []', f'libDirs={self._libraryDirs!r}')
166+
'libDirs = []', f'libDirs = {self._libraryDirs!r}')
167167
with open(wsgiScript, 'w') as f:
168168
f.write(script)
169169
else:

0 commit comments

Comments
 (0)