summaryrefslogtreecommitdiff
path: root/hello.py
diff options
context:
space:
mode:
Diffstat (limited to 'hello.py')
-rw-r--r--hello.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/hello.py b/hello.py
index c8866ce..9ecd5b9 100644
--- a/hello.py
+++ b/hello.py
@@ -2,7 +2,7 @@ from htmtl import Htmtl
def main():
- print(Htmtl("<div inner-text=\"hello\">asdasd</div>").html())
+ print(Htmtl("<div inner-text=\"hello {something}\">asdasd</div>", {'something': 'nothing'}).html())
if __name__ == "__main__":