aboutsummaryrefslogtreecommitdiffstats
path: root/devscripts/buildserver.py
diff options
context:
space:
mode:
Diffstat (limited to 'devscripts/buildserver.py')
-rw-r--r--devscripts/buildserver.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/devscripts/buildserver.py b/devscripts/buildserver.py
index e0c3cc8..42ee2b5 100644
--- a/devscripts/buildserver.py
+++ b/devscripts/buildserver.py
@@ -233,6 +233,7 @@ def rmtree(path):
#==============================================================================
+
class BuildError(Exception):
def __init__(self, output, code=500):
self.output = output
@@ -369,7 +370,7 @@ class Builder(PythonBuilder, GITBuilder, YoutubeDLBuilder, DownloadBuilder, Clea
class BuildHTTPRequestHandler(BaseHTTPRequestHandler):
- actionDict = { 'build': Builder, 'download': Builder } # They're the same, no more caching.
+ actionDict = {'build': Builder, 'download': Builder} # They're the same, no more caching.
def do_GET(self):
path = urlparse.urlparse(self.path)