From: Jaroslav Kysela Date: Wed, 6 Apr 2016 11:47:36 +0000 (+0200) Subject: webui: spinner fix X-Git-Tag: v4.2.1~726 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2358d8907d3b3a7566129d26a6c3fb0c195f8e98;p=thirdparty%2Ftvheadend.git webui: spinner fix --- diff --git a/support/css.py b/support/css.py index a7f5b1b86..e0cbf4ffa 100755 --- a/support/css.py +++ b/support/css.py @@ -53,6 +53,8 @@ def url(fn): e += p p += 4 url = l[p:e].strip().lstrip() + if url and url[0] == "'" and url[-1] == "'": + url = url[1:-1] if url.startswith('../docresources'): url = umangle(url, '../docresources', TVHDIR + '/docs/docresources') elif url.startswith('../../docresources'):