handlers.part: fix typo
authorMarko Kreen <markokr@gmail.com>
Mon, 21 May 2012 07:38:48 +0000 (10:38 +0300)
committerMarko Kreen <markokr@gmail.com>
Mon, 21 May 2012 07:38:48 +0000 (10:38 +0300)
python/londiste/handlers/part.py

index b6585a7bebf2fe5c256688722c0a1dd0f3f0be49..8bf70f530403004bf0c9f1fae53c2cbc61c65c4b 100644 (file)
@@ -40,8 +40,8 @@ class PartHandler(TableHandler):
         # hash function & full expression
         hashfunc = args.get('hashfunc', self.DEFAULT_HASHFUNC)
         self.hashexpr = self.DEFAULT_HASHEXPR % (
-                skytools.quite_fqident(hashfunc),
-                skytools.quite_ident(self.key))
+                skytools.quote_fqident(hashfunc),
+                skytools.quote_ident(self.key))
         self.hashexpr = args.get('hashexpr', self.hashexpr)
 
     def reset(self):