Improve wording of "cannot find" errors

This commit is contained in:
Justin Mayer 2013-04-20 08:08:31 -07:00
commit bdd702384f
2 changed files with 2 additions and 2 deletions

View file

@ -310,6 +310,6 @@ def is_valid_content(content, f):
content.check_properties() content.check_properties()
return True return True
except NameError as e: except NameError as e:
logger.error("Skipping %s: impossible to find information about " logger.error("Skipping %s: could not find information about "
"'%s'" % (f, e)) "'%s'" % (f, e))
return False return False

View file

@ -160,7 +160,7 @@ def configure_settings(settings):
if os.path.exists(theme_path): if os.path.exists(theme_path):
settings['THEME'] = theme_path settings['THEME'] = theme_path
else: else:
raise Exception("Impossible to find the theme %s" raise Exception("Could not find the theme %s"
% settings['THEME']) % settings['THEME'])
# if locales is not a list, make it one # if locales is not a list, make it one