diff options
author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2021-12-16 00:58:44 +0200 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2021-12-16 00:58:44 +0200 |
commit | 83b4ea59fc8793ccbfb6b40ffff111de14ebd4d3 (patch) | |
tree | eab6471412d7094cb265f4a292e910f187560a26 /indra/fix-incredibuild.py | |
parent | aa309c2eef0f3d033ddf8a5096ea1143221a4c71 (diff) | |
parent | 0b95b9d008a0878b5d57262e529cef61fb29ea24 (diff) |
Merge branch 'SL-15742' into DRTVWR-527-maint
Diffstat (limited to 'indra/fix-incredibuild.py')
-rwxr-xr-x | indra/fix-incredibuild.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/fix-incredibuild.py b/indra/fix-incredibuild.py index 98f16e9d97..678ee4329e 100755 --- a/indra/fix-incredibuild.py +++ b/indra/fix-incredibuild.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 ## ## $LicenseInfo:firstyear=2011&license=viewerlgpl$ ## Second Life Viewer Source Code @@ -27,7 +27,7 @@ import glob def delete_file_types(path, filetypes): if os.path.exists(path): - print 'Cleaning: ' + path + print('Cleaning: ' + path) orig_dir = os.getcwd(); os.chdir(path) filelist = [] |