summaryrefslogtreecommitdiffstats
path: root/tools/glusterfind
diff options
context:
space:
mode:
authorKotresh HR <khiremat@redhat.com>2018-09-05 04:30:35 -0400
committerAmar Tumballi <amarts@redhat.com>2018-09-07 03:37:02 +0000
commit21e78061a24a094067fb267b77c4ffaae7e762f3 (patch)
treefdd1355539ec6f891fb498983641d223d64afc1f /tools/glusterfind
parentbc6b6f6a168804f22bbb44081f89e938fbfcec60 (diff)
multiple: Fix python2 to python3 compat
Change-Id: Iac241166d7a35dc7cc6cf07850f9f1bce38fe207 Updates: #411 Signed-off-by: Kotresh HR <khiremat@redhat.com>
Diffstat (limited to 'tools/glusterfind')
-rw-r--r--tools/glusterfind/src/conf.py2
1 files changed, 1 insertions, 1 deletions
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