From 21e78061a24a094067fb267b77c4ffaae7e762f3 Mon Sep 17 00:00:00 2001 From: Kotresh HR Date: Wed, 5 Sep 2018 04:30:35 -0400 Subject: multiple: Fix python2 to python3 compat Change-Id: Iac241166d7a35dc7cc6cf07850f9f1bce38fe207 Updates: #411 Signed-off-by: Kotresh HR --- tools/glusterfind/src/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/glusterfind/src/conf.py b/tools/glusterfind/src/conf.py index 81183d55444..ab766f85c0f 100644 --- a/tools/glusterfind/src/conf.py +++ b/tools/glusterfind/src/conf.py @@ -10,7 +10,7 @@ import os try: - import configparser as ConfigParser + from configparser import ConfigParser except ImportError: import ConfigParser -- cgit