diff options
author | Kotresh HR <khiremat@redhat.com> | 2018-09-05 04:30:35 -0400 |
---|---|---|
committer | Amar Tumballi <amarts@redhat.com> | 2018-09-07 03:37:02 +0000 |
commit | 21e78061a24a094067fb267b77c4ffaae7e762f3 (patch) | |
tree | fdd1355539ec6f891fb498983641d223d64afc1f /geo-replication | |
parent | bc6b6f6a168804f22bbb44081f89e938fbfcec60 (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')
-rw-r--r-- | geo-replication/syncdaemon/gsyncdconfig.py | 2 | ||||
-rw-r--r-- | geo-replication/syncdaemon/master.py | 4 |
2 files changed, 3 insertions, 3 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 diff --git a/geo-replication/syncdaemon/master.py b/geo-replication/syncdaemon/master.py index 3ca60c65a07..f25279ff3a4 100644 --- a/geo-replication/syncdaemon/master.py +++ b/geo-replication/syncdaemon/master.py @@ -1037,7 +1037,7 @@ class GMasterChangelogMixin(GMasterCommon): # Special case: record mknod as link if ty in ['MKNOD']: mode = int(ec[2]) - if mode & 01000: + if mode & 0o1000: # Avoid stat'ing the file as it # may be deleted in the interim st = FreeObject(st_mode=int(ec[2]), @@ -1688,7 +1688,7 @@ class GMasterXsyncMixin(GMasterChangelogMixin): def is_sticky(self, path, mo): """check for DHTs linkto sticky bit file""" sticky = False - if mo & 01000: + if mo & 0o1000: sticky = self.master.server.linkto_check(path) return sticky |