summaryrefslogtreecommitdiffstats
path: root/python/lasso.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/lasso.py')
-rw-r--r--python/lasso.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/python/lasso.py b/python/lasso.py
index bf498859..eea0a596 100644
--- a/python/lasso.py
+++ b/python/lasso.py
@@ -72,6 +72,9 @@ class Node:
def get_child(self, name):
return Node(_obj=lassomod.node_get_child(self, name))
+ def get_content(self):
+ return lassomod.node_get_content(self)
+
def url_encode(self, sign_method, private_key_file):
return lassomod.node_url_encode(self, sign_method, private_key_file)