From: Marko Kreen Date: Thu, 18 Oct 2012 10:39:48 +0000 (+0300) Subject: part.py: avoid tab in code X-Git-Tag: skytools_3_1_2~19 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=178a0ce94cb4f880d41646b4916464a44e30a75e;p=skytools.git part.py: avoid tab in code --- 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)