From b63421642c50cff8b3bb8c0382931e68d0dbc25d Mon Sep 17 00:00:00 2001 From: Gregory Soutade Date: Thu, 19 Feb 2015 20:19:42 +0100 Subject: [PATCH] Fix a little mistake in previous commit --- iwla.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iwla.py b/iwla.py index a3d3bdc..60572ca 100755 --- a/iwla.py +++ b/iwla.py @@ -744,9 +744,9 @@ if __name__ == '__main__': else: conf.__dict__[new_k].append(v) else: - self.logger.error("%s is not a list" % (new_k)) + print("Error %s is not a list" % (new_k)) else: - self.logger.error("%s doesn't exists in default conf" % (new_k)) + print("Error %s doesn't exists in default conf" % (new_k)) else: conf.__dict__.update({k:v})