[fix] Correct logger object in backup_list (fix #75)

This commit is contained in:
Jérôme Lebleu 2015-07-27 08:39:14 +02:00 committed by kload
parent bd37a080b8
commit be62093164

View file

@ -299,7 +299,7 @@ def backup_list():
# Retrieve local archives
archives = os.listdir(archives_path)
except OSError as e:
logging.info("unable to iterate over local archives: %s", str(e))
logger.info("unable to iterate over local archives: %s", str(e))
else:
# Iterate over local archives
for f in archives: