From 3ed8d9bb19d80b55eb245580f4baa77ce1a04427 Mon Sep 17 00:00:00 2001
From: Andre Anjos <andre.anjos@idiap.ch>
Date: Thu, 8 Sep 2016 18:53:48 +0200
Subject: [PATCH] Fix py3 compatibility issue

---
 bob/bio/base/test/test_config_file.py | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/bob/bio/base/test/test_config_file.py b/bob/bio/base/test/test_config_file.py
index 06791ccb..a5bbed7f 100644
--- a/bob/bio/base/test/test_config_file.py
+++ b/bob/bio/base/test/test_config_file.py
@@ -54,9 +54,6 @@ def check_parameters(args_file, args_cmdline):
     if (isinstance(attr_file, (bool, str, int, list))) or (attr_file is None):
       assert attr_cmdline == attr_file, '(%s) %r != %r' % \
           (attr, attr_cmdline, attr_file)
-    else:
-      print '(%s) %r == %r?' % (attr, attr_cmdline, attr_file),
-      print attr_cmdline == attr_file, type(attr_cmdline)
 
 
 def test_basic():
-- 
GitLab