From 55b34a6165394bceb4b8b7cb6b8ae2f3ce367a53 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 22 Aug 2015 11:48:39 +0530 Subject: [PATCH] ... --- src/calibre/gui2/icon_theme.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/icon_theme.py b/src/calibre/gui2/icon_theme.py index 4bb043fd0d..a0585acbcd 100644 --- a/src/calibre/gui2/icon_theme.py +++ b/src/calibre/gui2/icon_theme.py @@ -66,7 +66,7 @@ class Report(object): @property def name(self): - return ascii_filename(self.theme.title).replace(' ', '_').lower() + return ascii_filename(self.theme.title).replace(' ', '_').replace('.', '_').lower() def read_theme_from_folder(path): path = os.path.abspath(path)