Yaniv Bronhaim has uploaded a new change for review.

Change subject: Adding toolTests.py to python3 check modules
......................................................................

Adding toolTests.py to python3 check modules

Change-Id: I52f11a1a10cae46773d05d0c09da80ad8eb3b772
Signed-off-by: Yaniv Bronhaim <ybron...@redhat.com>
---
M lib/vdsm/tool/configfile.py
M tests/Makefile.am
2 files changed, 3 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/52/48052/1

diff --git a/lib/vdsm/tool/configfile.py b/lib/vdsm/tool/configfile.py
index 26ec114..0c58205 100644
--- a/lib/vdsm/tool/configfile.py
+++ b/lib/vdsm/tool/configfile.py
@@ -18,12 +18,12 @@
 #
 
 from __future__ import absolute_import
-import ConfigParser
 import functools
 import os
 import tempfile
 import re
 import selinux
+from six.moves import configparser as ConfigParser
 import io
 
 from .. import utils
@@ -263,5 +263,5 @@
     def read(self, path):
         with open(path, 'r') as f:
             return self.wrapped.readfp(
-                io.StringIO(u'[root]\n' + f.read().decode())
+                io.StringIO(u'[root]\n' + f.read())
             )
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 205289e..3b1f8bf 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -30,6 +30,7 @@
        apiData.py \
        cmdutilsTests.py \
        concurrentTests.py \
+       toolTests.py \
        $(NULL)
 
 device_modules = \


-- 
To view, visit https://gerrit.ovirt.org/48052
To unsubscribe, visit https://gerrit.ovirt.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I52f11a1a10cae46773d05d0c09da80ad8eb3b772
Gerrit-PatchSet: 1
Gerrit-Project: vdsm
Gerrit-Branch: master
Gerrit-Owner: Yaniv Bronhaim <ybron...@redhat.com>
_______________________________________________
vdsm-patches mailing list
vdsm-patches@lists.fedorahosted.org
https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches

Reply via email to