Skip to content

Commit

Permalink
need the right imports
Browse files Browse the repository at this point in the history
  • Loading branch information
progrium committed Jan 30, 2011
1 parent f1cfd1d commit 8ee420b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions keymaster.py
Expand Up @@ -32,7 +32,9 @@
from google.appengine.api import users
from google.appengine.ext import db
from google.appengine.ext import webapp
from google.appengine.ext.webapp import util
from google.appengine.ext.webapp.util import run_wsgi_app

from util import RedirectException

try:
from Crypto.Cipher import ARC4
Expand Down Expand Up @@ -97,7 +99,7 @@ def main():
('/_km/key', KeymasterHandler),
('/_km/key/(.+)', KeymasterHandler),
],debug=True)
util.run_wsgi_app(application)
run_wsgi_app(application)

if __name__ == '__main__':
main()
Expand Down

0 comments on commit 8ee420b

Please sign in to comment.