diff --git a/asciiWriter/wrap_single_line.py b/asciiWriter/wrap_single_line.py index 888a6ad..8dee316 100644 --- a/asciiWriter/wrap_single_line.py +++ b/asciiWriter/wrap_single_line.py @@ -117,6 +117,6 @@ if __name__ == '__main__': from hyphen import Hyphenator h_en = Hyphenator('en_US') - wrap, remaining = wrap_single_line('https://stackoverflow.com/questions/3940128/how-can-i-reverse-a-list-in-python', width=46, use_hyphenator=h_en) + line, remaining = wrap_single_line('https://stackoverflow.com/questions/3940128/how-can-i-reverse-a-list-in-python', width=46, use_hyphenator=h_en) - print(wrap, remaining) \ No newline at end of file + print(line, remaining) \ No newline at end of file