summaryrefslogtreecommitdiff
path: root/examples/greetingInGreek.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/greetingInGreek.py')
-rw-r--r--examples/greetingInGreek.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/greetingInGreek.py b/examples/greetingInGreek.py
index 56117d2..ed98e9a 100644
--- a/examples/greetingInGreek.py
+++ b/examples/greetingInGreek.py
@@ -9,7 +9,7 @@ from pyparsing import Word, pyparsing_unicode as ppu
# define grammar
alphas = ppu.Greek.alphas
-greet = Word(alphas) + ',' + Word(alphas) + '!'
+greet = Word(alphas) + "," + Word(alphas) + "!"
# input string
hello = "Καλημέρα, κόσμε!"