diff options
author | Frederick Yin <fkfd@macaw.me> | 2020-07-05 21:01:34 +0800 |
---|---|---|
committer | Frederick Yin <fkfd@macaw.me> | 2020-07-05 21:01:34 +0800 |
commit | b3ac51793f413f0697f61caa31c54559b1db8e4e (patch) | |
tree | 59a74d933cd001cf86e97e0404673b8ce1ba93de /utab | |
parent | 68cdac974a7a28b4d8aba30a8e1a407989586913 (diff) |
Misc meta fixes
- 0BSD is actually a kind of Public Domain License
- Changed flask app name to "utab"
Diffstat (limited to 'utab')
-rw-r--r-- | utab/__main__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utab/__main__.py b/utab/__main__.py index 6dddd0b..578c9d6 100644 --- a/utab/__main__.py +++ b/utab/__main__.py @@ -9,7 +9,7 @@ import csv from .pyfav import get_favicon_url from .rendering import * -app = Flask(__name__) +app = Flask("utab") # locate page template at e.g. $XDG_CONFIG_HOME/utab/index.html # and sites json file at utab/sites.json |