diff options
-rw-r--r-- | python/londiste/handlers/part.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/londiste/handlers/part.py b/python/londiste/handlers/part.py index b6585a7b..8bf70f53 100644 --- a/python/londiste/handlers/part.py +++ b/python/londiste/handlers/part.py @@ -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): |