aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'server/app.py')
-rwxr-xr-xserver/app.py32
1 files changed, 16 insertions, 16 deletions
diff --git a/server/app.py b/server/app.py
index fa5d6a4..f2948e8 100755
--- a/server/app.py
+++ b/server/app.py
@@ -16,21 +16,21 @@ from package import Package
from host import Host
urls = (
- r'/', 'Index',
- r'/arch', 'Arch',
- r'/profile', 'Profile',
- r'/mirror', 'Mirror',
- r'/feature', 'Feature',
- r'/keyword', 'Keyword',
- r'/repo', 'Repo',
- r'/lang', 'Lang',
- r'/package/(.+)/(.+)', 'Package',
- r'/package/(.+)', 'Package',
- r'/package', 'Package',
- r'/use/(.+)', 'Use',
- r'/use', 'Use',
- r'/host/(.+)', 'Host'
- )
+ r'/', 'Index',
+ r'/arch', 'Arch',
+ r'/profile', 'Profile',
+ r'/mirror', 'Mirror',
+ r'/feature', 'Feature',
+ r'/keyword', 'Keyword',
+ r'/repo', 'Repo',
+ r'/lang', 'Lang',
+ r'/package/(.+)/(.+)', 'Package',
+ r'/package/(.+)', 'Package',
+ r'/package', 'Package',
+ r'/use/(.+)', 'Use',
+ r'/use', 'Use',
+ r'/host/(.+)', 'Host'
+ )
app = web.application(urls, globals())
@@ -38,4 +38,4 @@ app.notfound = config.notfound
app.internalerror = config.internalerror
if __name__ == "__main__":
- app.run()
+ app.run()