summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rwxr-xr-xdocs/lab/serve.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/lab/serve.py b/docs/lab/serve.py
index afc96854a..91fc12cb0 100755
--- a/docs/lab/serve.py
+++ b/docs/lab/serve.py
@@ -26,7 +26,7 @@ class HTTPServer(http.server.HTTPServer):
labdir = abspath(dirname(__file__))
try:
os.symlink('../../build/fonts', pjoin(labdir, 'fonts'))
-except FileExistsError:
+except OSError:
pass
addr = ("localhost", 3003)