]> git.ipfire.org Git - pbs.git/commitdiff
Fix typo in tornado module name.
authorMichael Tremer <michael.tremer@ipfire.org>
Sat, 2 Mar 2013 10:58:30 +0000 (11:58 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Sat, 2 Mar 2013 10:58:30 +0000 (11:58 +0100)
web/handlers_packages.py

index 25662c6536b1268fef3aeb68aada504c256f5aff..716ca64e4e74d853373be7e8ef79654962382396 100644 (file)
@@ -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)