summaryrefslogtreecommitdiff
path: root/happybase/table.py
diff options
context:
space:
mode:
Diffstat (limited to 'happybase/table.py')
-rw-r--r--happybase/table.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/happybase/table.py b/happybase/table.py
index 75c30ed..63425f6 100644
--- a/happybase/table.py
+++ b/happybase/table.py
@@ -64,14 +64,14 @@ class Table(object):
descriptors = self.connection.client.getColumnDescriptors(self.name)
families = dict()
for name, descriptor in descriptors.items():
- name = name.rstrip(':')
+ name = name.rstrip(b':')
families[name] = thrift_type_to_dict(descriptor)
return families
def _column_family_names(self):
"""Retrieve the column family names for this table (internal use)"""
names = self.connection.client.getColumnDescriptors(self.name).keys()
- return [name.rstrip(':') for name in names]
+ return [name.rstrip(b':') for name in names]
def regions(self):
"""Retrieve the regions for this table.