diff options
author | Marko Kreen | 2012-10-18 10:39:48 +0000 |
---|---|---|
committer | Marko Kreen | 2012-10-18 12:42:28 +0000 |
commit | 178a0ce94cb4f880d41646b4916464a44e30a75e (patch) | |
tree | 8a02023a2c95e4f0e68e54c62342227acfcbb24a | |
parent | c261a4a076eaf40983e79de2bcaee300f0994c11 (diff) |
part.py: avoid tab in code
-rw-r--r-- | python/londiste/handlers/part.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/londiste/handlers/part.py b/python/londiste/handlers/part.py index 5213f67d..6864c64f 100644 --- a/python/londiste/handlers/part.py +++ b/python/londiste/handlers/part.py @@ -82,7 +82,7 @@ class PartHandler(TableHandler): TableHandler.process_event(self, ev, sql_queue_func, arg) def get_copy_condition(self, src_curs, dst_curs): - """Prepare the where condition for copy and replay filtering""" + """Prepare the where condition for copy and replay filtering""" self.load_part_info(dst_curs) w = "(%s & %d) = %d" % (self.hashexpr, self.max_part, self.local_part) self.log.debug('part: copy_condition=%s' % w) |