diff options
Diffstat (limited to 'examples/greetingInGreek.py')
-rw-r--r-- | examples/greetingInGreek.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/greetingInGreek.py b/examples/greetingInGreek.py index ed98e9a..aa8272a 100644 --- a/examples/greetingInGreek.py +++ b/examples/greetingInGreek.py @@ -15,4 +15,4 @@ greet = Word(alphas) + "," + Word(alphas) + "!" hello = "Καλημέρα, κόσμε!"
# parse input string
-print(greet.parseString(hello))
+print(greet.parse_string(hello))
|