summaryrefslogtreecommitdiffstats
path: root/geo-replication/syncdaemon/gsyncdconfig.py
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 /geo-replication/syncdaemon/gsyncdconfig.py
parentbc6b6f6a168804f22bbb44081f89e938fbfcec60 (diff)
multiple: Fix python2 to python3 compat
Change-Id: Iac241166d7a35dc7cc6cf07850f9f1bce38fe207 Updates: #411 Signed-off-by: Kotresh HR <khiremat@redhat.com>
Diffstat (limited to 'geo-replication/syncdaemon/gsyncdconfig.py')
-rw-r--r--geo-replication/syncdaemon/gsyncdconfig.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/geo-replication/syncdaemon/gsyncdconfig.py b/geo-replication/syncdaemon/gsyncdconfig.py
index 67a367c8695..5d439a4c5ee 100644
--- a/geo-replication/syncdaemon/gsyncdconfig.py
+++ b/geo-replication/syncdaemon/gsyncdconfig.py
@@ -10,7 +10,7 @@
#
try:
- from configparser import ConfigParser as ConfigParser, NoSectionError
+ from configparser import ConfigParser, NoSectionError
except ImportError:
from ConfigParser import ConfigParser, NoSectionError
import os