1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-20 09:45:12 +03:00
aports/testing/wok/alpine-specific-pushserver.patch
2017-08-17 08:17:21 +00:00

11 lines
428 B
Diff

--- a/src/wok/pushserver.py
+++ b/src/wok/pushserver.py
@@ -67,7 +67,7 @@
def set_socket_file(self):
if not os.path.isdir(BASE_DIRECTORY):
try:
- os.mkdir(BASE_DIRECTORY)
+ os.makedirs(BASE_DIRECTORY)
except OSError:
raise RuntimeError('PushServer base UNIX socket dir %s '
'not found.' % BASE_DIRECTORY)