We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7ed5ea commit f29f3c7Copy full SHA for f29f3c7
app.py
@@ -77,6 +77,7 @@ def get(self):
77
clean_up_old_images()
78
self.render("index.html", cookie_key=app_cookie,
79
image_captions=get_image_captions(self.current_user))
80
+ head = get
81
82
83
class DetailHandler(BaseHandler):
@@ -318,6 +319,8 @@ def main():
318
319
raise SystemExit
320
logging.info("Metadata prepared in %s seconds", end - start)
321
322
+ logging.info("Web application available locally at:")
323
+ logging.info("\thttp://localhost:" + str(options.port))
324
logging.info("Use Ctrl+C to stop web server")
325
ioloop.IOLoop.current().start()
326
0 commit comments