You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@madlib.apache.org by ok...@apache.org on 2023/01/04 12:16:30 UTC

[madlib] branch master updated: Fix TestIfNoUTF8BOM.py for newer versions of cmake

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

okislal pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/madlib.git


The following commit(s) were added to refs/heads/master by this push:
     new ac151734 Fix TestIfNoUTF8BOM.py for newer versions of cmake
ac151734 is described below

commit ac1517347fd37fce4691dfe73ab25095d04ae723
Author: Orhan Kislal <ok...@apache.org>
AuthorDate: Wed Jan 4 15:15:44 2023 +0300

    Fix TestIfNoUTF8BOM.py for newer versions of cmake
---
 cmake/TestIfNoUTF8BOM.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmake/TestIfNoUTF8BOM.py b/cmake/TestIfNoUTF8BOM.py
index 47cd245f..135a0c00 100755
--- a/cmake/TestIfNoUTF8BOM.py
+++ b/cmake/TestIfNoUTF8BOM.py
@@ -27,7 +27,7 @@ def main(argv=None):
     if BOM != "utf_8":
         return 0
     else:
-        print 'Detected byte-order mark (%s) in file "%s".' % (BOM, argv[1])
+        print ('Detected byte-order mark (%s) in file "%s".' % (BOM, argv[1]))
         return 1
 
 if __name__ == '__main__':