Fixed working directory log message.

This error prevented raising the expected exception, which causes
problems in storyboard.

Change-Id: Ie2394bd55f7936d45a91e163e1944296fc56b16f
This commit is contained in:
Michael Krotscheck
2015-01-26 12:12:48 -08:00
parent 349aa77c50
commit dc3272c473

View File

@@ -62,7 +62,7 @@ def get_working_directory():
# We're expecting OSError or Exception here. Recast and resend,
# so that any part of the application can respond.
message = six.text_type(e)
LOG.error("Cannot create working directory: " % (message))
LOG.error("Cannot create working directory: %s" % (message,))
raise IOError(message)
# Use this directory and return.