summaryrefslogtreecommitdiffstats
path: root/languages/python/app_templates/pythonhello/app.py
diff options
context:
space:
mode:
Diffstat (limited to 'languages/python/app_templates/pythonhello/app.py')
-rw-r--r--languages/python/app_templates/pythonhello/app.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/languages/python/app_templates/pythonhello/app.py b/languages/python/app_templates/pythonhello/app.py
index 3257ce62..33b8be2c 100644
--- a/languages/python/app_templates/pythonhello/app.py
+++ b/languages/python/app_templates/pythonhello/app.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
def main():
- print 'Hello world!'
+ print('Hello world!')
main()