Fix import
This commit is contained in:
parent
eed50f8ac6
commit
c08ef2d10c
2
app.py
2
app.py
|
@ -1,5 +1,6 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
|
import bottle
|
||||||
from bottle import (
|
from bottle import (
|
||||||
get,
|
get,
|
||||||
run,
|
run,
|
||||||
|
@ -13,6 +14,7 @@ import thesethreewords as these
|
||||||
def index():
|
def index():
|
||||||
return template('index', err=None)
|
return template('index', err=None)
|
||||||
|
|
||||||
|
|
||||||
@get('/<threewords>')
|
@get('/<threewords>')
|
||||||
def showMap(threewords):
|
def showMap(threewords):
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in New Issue