Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
sureshdsk committed Oct 16, 2021
1 parent 0cf528d commit ddde385
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/export.py
Original file line number Diff line number Diff line change
@@ -28,7 +28,7 @@ def print_table():
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 @@ def 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

0 comments on commit ddde385

Please sign in to comment.