From: Michael Tremer Date: Sat, 2 Mar 2013 10:58:30 +0000 (+0100) Subject: Fix typo in tornado module name. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e088f666aade7be8c3fbe8397ab0118421045f3a;p=pbs.git Fix typo in tornado module name. --- diff --git a/web/handlers_packages.py b/web/handlers_packages.py index 25662c65..716ca64e 100644 --- a/web/handlers_packages.py +++ b/web/handlers_packages.py @@ -175,7 +175,7 @@ class PackageFileDownloadHandler(BaseHandler): # Open the package in the filesystem. pkg_file = pkg.get_file() if not pkg_file: - raise torando.web.HTTPError(404, "Could not open package %s" % pkg.path) + raise tornado.web.HTTPError(404, "Could not open package %s" % pkg.path) # Open the file to transfer it to the client. f = pkg_file.open_file(filename)