diff options
author | Sanju Rakonde <srakonde@redhat.com> | 2018-09-04 21:05:11 +0530 |
---|---|---|
committer | Kotresh HR <khiremat@redhat.com> | 2018-09-05 02:30:10 +0000 |
commit | 33128ef59a05f2c31c0f51919c5dd7746cebd6ef (patch) | |
tree | 55f3e91b9b9087f26c0434b4daf0c7585251c8f2 /geo-replication/syncdaemon/gsyncdconfig.py | |
parent | 4d198e33ba2ff5b550e8095af3c8d0b76c18bc2f (diff) |
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 <srakonde@redhat.com>
Diffstat (limited to 'geo-replication/syncdaemon/gsyncdconfig.py')
-rw-r--r-- | geo-replication/syncdaemon/gsyncdconfig.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |