Browse Source

Fix exception error logging

hotfix/v3.3.14
Prabuddha Chakraborty 9 years ago
parent
commit
b5f9f0539a
  1. 2
      ee/core/fileutils.py

2
ee/core/fileutils.py

@ -77,7 +77,7 @@ class EEFileUtils():
Log.error(self, 'Unable to copy file from {0} to {1}'
.format(src, dest))
except IOError as e:
Log.debug(self, "{e}".format(e.strerror))
Log.debug(self, "{0}".format(e.strerror))
Log.error(self, "Unable to copy file from {0} to {1}"
.format(src, dest))

Loading…
Cancel
Save