testing branch change

This commit is contained in:
Abubakar Abid 2021-11-08 16:22:59 -06:00
parent a9a96b268f
commit 346e9c0314
2 changed files with 2 additions and 1 deletions

View File

@ -139,7 +139,7 @@ class Interface:
self.capture_session = capture_session
self.session = None
self.server_name = server_name
self.title = title
self.title = "Test " + title
self.description = description
if article is not None:
article = utils.readme_to_html(article)

View File

@ -48,6 +48,7 @@ app = Flask(__name__,
template_folder=STATIC_TEMPLATE_LIB,
static_folder="",
static_url_path="/none/")
# app.url_map.strict_slashes = False
CORS(app)
cache_buster = CacheBuster(
config={'extensions': ['.js', '.css'], 'hash_size': 5})