diff --git a/openpype/hosts/flame/api/lib.py b/openpype/hosts/flame/api/lib.py index 2b3396c420..48331dcbc2 100644 --- a/openpype/hosts/flame/api/lib.py +++ b/openpype/hosts/flame/api/lib.py @@ -15,9 +15,9 @@ def io_preferences_file(klass, filepath, write=False): flag = "w" if write else "r" yield open(filepath, flag) - except IOError: - klass.log.info("Unable to work with preferences `{}`".format( - filepath)) + except IOError as _error: + klass.log.info("Unable to work with preferences `{}`: {}".format( + filepath, _error)) class FlameAppFramework(object):