summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--geo-replication/syncdaemon/gsyncdconfig.py2
-rw-r--r--geo-replication/syncdaemon/repce.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/geo-replication/syncdaemon/gsyncdconfig.py b/geo-replication/syncdaemon/gsyncdconfig.py
index 8403477dac3..b2517f031ca 100644
--- a/geo-replication/syncdaemon/gsyncdconfig.py
+++ b/geo-replication/syncdaemon/gsyncdconfig.py
@@ -10,7 +10,7 @@
#
try:
- from configparser import ConfigParser, NoSectionError
+ from configparser import configparser as ConfigParser, NoSectionError
except ImportError:
from ConfigParser import ConfigParser, NoSectionError
import os
diff --git a/geo-replication/syncdaemon/repce.py b/geo-replication/syncdaemon/repce.py
index f819a89bfee..9d5da666858 100644
--- a/geo-replication/syncdaemon/repce.py
+++ b/geo-replication/syncdaemon/repce.py
@@ -14,9 +14,9 @@ import time
import logging
from threading import Condition
try:
- import _thread
+ import _thread as thread
except ImportError:
- import thread as _thread
+ import thread
try:
from queue import Queue
except ImportError: