summaryrefslogtreecommitdiffstats
path: root/geo-replication/syncdaemon/repce.py
diff options
context:
space:
mode:
Diffstat (limited to 'geo-replication/syncdaemon/repce.py')
-rw-r--r--geo-replication/syncdaemon/repce.py4
1 files changed, 2 insertions, 2 deletions
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: