Skip to content

Commit

Permalink
[backend] fix exception logging in ensure_dir_exists helper
Browse files Browse the repository at this point in the history
  • Loading branch information
clime committed Sep 21, 2016
1 parent b8c767c commit 81fba03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/backend/helpers.py
Expand Up @@ -416,7 +416,7 @@ def ensure_dir_exists(path, log):
try:
os.makedirs(path)
except OSError as e:
log.exception(e)
log.exception(str(e))


def get_chroot_arch(chroot):
Expand Down

0 comments on commit 81fba03

Please sign in to comment.