From 567dac63973136a3e458e25d413389c1762a68c4 Mon Sep 17 00:00:00 2001 From: alessandro90 Date: Sat, 18 May 2019 21:42:23 +0200 Subject: [PATCH] Add ' to two strings --- themesmanager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/themesmanager.py b/themesmanager.py index b9947c8..e12eb0d 100644 --- a/themesmanager.py +++ b/themesmanager.py @@ -25,8 +25,8 @@ class ThemeConstants: DEFAULT_TEXT_COLOR = "#ffffff" THEME_NOT_FOUND = "Theme not found" MISSING_THEME = "Missing theme in '" + FOLDER + "' folder." - MISSING_THEME_FOLDER = FOLDER + " folder not found.\nOnly the basic theme is available." - THEME_FOLDER_NOT_FOUND = FOLDER + " folder not found" + MISSING_THEME_FOLDER = "'" + FOLDER + "'" + " folder not found.\nOnly the basic theme is available." + THEME_FOLDER_NOT_FOUND = "'" + FOLDER + "'" + " folder not found" class ThemeManager: def __init__(self, parent):