summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index f7676cd..4761512 100644
--- a/README.md
+++ b/README.md
@@ -17,7 +17,7 @@ Here is a program to parse "Hello, World!" (or any greeting of the form
from pyparsing import Word, alphas
greet = Word( alphas ) + "," + Word( alphas ) + "!"
hello = "Hello, World!"
-print hello, "->", greet.parseString( hello )
+print(hello, "->", greet.parseString( hello ))
```
The program outputs the following: