salt/pillar/django_orm.py: remove raw string formatting

This commit is contained in:
Erik Johnson 2015-08-26 23:26:06 -05:00
parent 2074d9ddd5
commit 37bb9cd4be

View File

@ -153,7 +153,7 @@ def ext_pillar(minion_id, # pylint: disable=W0613
'''
if not os.path.isdir(project_path):
log.error('Django project dir: {0!r} not a directory!'.format(
log.error('Django project dir: \'{0}\' not a directory!'.format(
project_path))
return {}
if HAS_VIRTUALENV and env is not None and os.path.isdir(env):