From ddde385389f7e4c4798491f142e0b8acfc7e4b23 Mon Sep 17 00:00:00 2001 From: Suresh Kumar Date: Sat, 16 Oct 2021 19:05:47 +0530 Subject: [PATCH] fix typo --- examples/export.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/export.py b/examples/export.py index d16daa86..07387bc4 100644 --- a/examples/export.py +++ b/examples/export.py @@ -28,7 +28,7 @@ print("print table to the console") print_table() # Get console output as text -print("geting console output as text") +print("getting console output as text") text = console.export_text() # Calling print_table again because console output buffer @@ -38,7 +38,7 @@ print_table() # Get console output as html # use clear=False so output is not flushed after export -print("geting console output as html") +print("getting console output as html") html = console.export_html(clear=False) # Export text output to table_export.txt