From 33128ef59a05f2c31c0f51919c5dd7746cebd6ef Mon Sep 17 00:00:00 2001 From: Sanju Rakonde Date: Tue, 4 Sep 2018 21:05:11 +0530 Subject: core: switch to python3 Commit af0d5a9b5375a5cd87ac10b429e2b9934718ce5b changes python2 -> python3. This patch fixes a small issue introduced by it. Change-Id: Ib23c73683f570e8891f41476b661f37c89635fb5 updates: #411 Signed-off-by: Sanju Rakonde --- geo-replication/syncdaemon/gsyncdconfig.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'geo-replication') diff --git a/geo-replication/syncdaemon/gsyncdconfig.py b/geo-replication/syncdaemon/gsyncdconfig.py index 86b942d6dc9..67a367c8695 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 as ConfigParser, NoSectionError except ImportError: from ConfigParser import ConfigParser, NoSectionError import os -- cgit