summaryrefslogtreecommitdiffstats
path: root/custodia/httpd/server.py
diff options
context:
space:
mode:
Diffstat (limited to 'custodia/httpd/server.py')
-rw-r--r--custodia/httpd/server.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/custodia/httpd/server.py b/custodia/httpd/server.py
index c1df0cb..b1440ab 100644
--- a/custodia/httpd/server.py
+++ b/custodia/httpd/server.py
@@ -377,8 +377,6 @@ class HTTPServer(object):
if url.scheme == 'http+unix':
# Unix socket
serverclass = ForkingUnixHTTPServer
- if address[0] != '/':
- raise ValueError('Must use absolute unix socket name')
if os.path.exists(address):
os.remove(address)
elif url.scheme == 'http':