summaryrefslogtreecommitdiff
path: root/happybase/table.py
diff options
context:
space:
mode:
authorWouter Bolsterlee <wouter@bolsterl.ee>2016-08-01 22:45:09 +0200
committerWouter Bolsterlee <wouter@bolsterl.ee>2016-08-01 22:45:09 +0200
commit06108ce838727d415ec2cd7d01c8e93ada587ce0 (patch)
tree0690027d94d21a25d19fe8ce93aebab625e095d7 /happybase/table.py
parentf536bdaabf7fa1c03fc8e623dc96d1e0c7c7afe9 (diff)
downloadhappybase-06108ce838727d415ec2cd7d01c8e93ada587ce0.tar.gz
Avoid thriftpy import hook
...since it's a global thing. Make importing more explicit by specifying a path (using pkg_resources) to the .thrift file and loading it explicitly.
Diffstat (limited to 'happybase/table.py')
-rw-r--r--happybase/table.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/happybase/table.py b/happybase/table.py
index 4400723..22c5dd0 100644
--- a/happybase/table.py
+++ b/happybase/table.py
@@ -8,7 +8,7 @@ from struct import Struct
from six import iteritems
-from .Hbase_thrift import TScan
+from Hbase_thrift import TScan
from .util import thrift_type_to_dict, bytes_increment, OrderedDict
from .batch import Batch