Skip to content

Commit 579283b

Browse files
committed
correct python f-print
1 parent e3a8639 commit 579283b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

irods/test/scripts/run_suite_locally.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ SCRIPT_DIR=$(dirname "$0")
77
report_environment_variables() {
88
echo "PRC under test with these environment variables active:"
99
python -c "
10-
import os,sys
10+
import os, sys
1111
for name in ['IRODS_PACKAGE_VERSION','PYTHON_VERSION']:
1212
value = os.environ.get(name)
1313
print(f' {name}=[{value}]')
14+
print(f'{sys.executable = }')
15+
print(f'{sys.version = }')
1416
"
15-
print(f'{sys.executable = }')
16-
print(f'{sys.version = }')
1717
}
1818

1919
run_tests() {

0 commit comments

Comments
 (0)