From 924bed06cbfc20d170e86d75d58652c684e8ec83 Mon Sep 17 00:00:00 2001 From: Ruud Date: Tue, 30 Apr 2013 00:29:25 +0200 Subject: [PATCH] Rewrite font css --- couchpotato/core/_base/clientscript/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/couchpotato/core/_base/clientscript/main.py b/couchpotato/core/_base/clientscript/main.py index f2a30f6f..4938a22a 100644 --- a/couchpotato/core/_base/clientscript/main.py +++ b/couchpotato/core/_base/clientscript/main.py @@ -110,6 +110,7 @@ class ClientScript(Plugin): else: data = cssmin(f) data = data.replace('../images/', '../static/images/') + data = data.replace('../fonts/', '../static/fonts/') raw.append({'file': file_path, 'date': int(os.path.getmtime(file_path)), 'data': data})