diff options
author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2022-02-28 22:02:26 +0200 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2022-02-28 22:02:26 +0200 |
commit | 7f315b1552dd01e0ee2ff58e84f1fc87fa675cdf (patch) | |
tree | b48d3f2d1e5b27ad6edd3263411f364e6ceb2428 /indra/fix-incredibuild.py | |
parent | 31a074c3c41cd96f9656ec7510c6eff7ebec440e (diff) | |
parent | 6ca09a94554ec01f5c94ec60fffd01d7e33f3546 (diff) |
Merge branch 'master' into DRTVWR-486
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 = [] |