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:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user