From ab40834cc1a28bce6b36f6893a7aab618f694b1d Mon Sep 17 00:00:00 2001 From: Orion Poplawski Date: Fri, 21 Apr 2023 07:27:49 -0600 Subject: [PATCH] Use proper python3 print syntax --- chromium.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chromium.spec b/chromium.spec index 6fc5717..d23fa1b 100644 --- a/chromium.spec +++ b/chromium.spec @@ -1256,7 +1256,7 @@ build/linux/unbundle/replace_gn_files.py --system-libraries \ flac # Check that there is no system 'google' module, shadowing bundled ones: -if python3 -c 'import google ; print google.__path__' 2> /dev/null ; then \ +if python3 -c 'import google ; print(google.__path__)' 2> /dev/null ; then \ echo "Python 3 'google' module is defined, this will shadow modules of this build"; \ exit 1 ; \ fi