diff options
-rw-r--r-- | setup.py | 2 | ||||
-rw-r--r-- | utab/__main__.py | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -28,7 +28,7 @@ setuptools.setup( install_requires=["flask>=1.1.2", "beautifulsoup4>=4.3.2", "requests>=2.1.0"], classifiers=[ "Programming Language :: Python :: 3", - "License :: OSI Approved :: BSD License", + "License :: Public Domain", "Operating System :: OS Independent", ], python_requires=">=3.6", 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 |