You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by ra...@apache.org on 2018/05/06 12:23:16 UTC

[incubator-openwhisk-utilities] branch master updated: print() is a function in Python 3 (#30)

This is an automated email from the ASF dual-hosted git repository.

rabbah pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk-utilities.git


The following commit(s) were added to refs/heads/master by this push:
     new c960251  print() is a function in Python 3 (#30)
c960251 is described below

commit c9602514bd4cdd0af0167151101c5fa5a5b261df
Author: cclauss <cc...@bluewin.ch>
AuthorDate: Sun May 6 14:23:14 2018 +0200

    print() is a function in Python 3 (#30)
---
 scancode/tests/include/python/good-fuzzy-script.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scancode/tests/include/python/good-fuzzy-script.py b/scancode/tests/include/python/good-fuzzy-script.py
index 6428a87..6cc087e 100644
--- a/scancode/tests/include/python/good-fuzzy-script.py
+++ b/scancode/tests/include/python/good-fuzzy-script.py
@@ -24,6 +24,6 @@ import sys
 # Script entrypoint.
 if __name__ == "__main__":
 
-    print "hello world"
+    print("hello world")
 
 sys.exit(0)

-- 
To stop receiving notification emails like this one, please contact
rabbah@apache.org.