summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWouter Bolsterlee <uws@xs4all.nl>2014-05-18 16:28:26 +0200
committerWouter Bolsterlee <uws@xs4all.nl>2014-05-18 16:28:26 +0200
commit1a45d9cd389cd735044bf7f4124a6dbe795b5ada (patch)
tree090fd2affbf93c9852cc08d00c9c10dc1f115676
parent7cc810ebd1e41482b02b6ed2318cc20080707ee4 (diff)
downloadhappybase-1a45d9cd389cd735044bf7f4124a6dbe795b5ada.tar.gz
Fix inversed wording in error message about 'sorted_columns'
-rw-r--r--happybase/table.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/happybase/table.py b/happybase/table.py
index b6c35a0..60e74be 100644
--- a/happybase/table.py
+++ b/happybase/table.py
@@ -302,7 +302,7 @@ class Table(object):
if sorted_columns and self.connection.compat < '0.96':
raise NotImplementedError(
- "'sorted_columns' is not supported in HBase >= 0.96")
+ "'sorted_columns' is only supported in HBase >= 0.96")
if row_prefix is not None:
if row_start is not None or row_stop is not None: