diff options
author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-08-05 02:58:27 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-05 02:58:27 +0300 |
commit | 6a9cd405a3608afeddab8f18e8648d4ccde47268 (patch) | |
tree | 56babde64959141e6f1fbdd00ab1a0d00fd5f12d /indra/newview/viewer_manifest.py | |
parent | 2ee039c736f64c91bb4f16e403360cddb0089707 (diff) | |
parent | 24854b4dd74edabf67efe533ef191553442a9bad (diff) |
Merge pull request #2188 from Nicky-D/feature/warning_cleansweep
Feature/warning cleansweep
Diffstat (limited to 'indra/newview/viewer_manifest.py')
-rwxr-xr-x | indra/newview/viewer_manifest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index 156c9aaf87..f9a61ee311 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -277,13 +277,13 @@ class ViewerManifest(LLManifest): # All lines up to and including the first blank line are the file header; skip them lines.reverse() # so that pop will pull from first to last line - while not re.match("\s*$", lines.pop()) : + while not re.match(r"\s*$", lines.pop()) : pass # do nothing # A line that starts with a non-whitespace character is a name; all others describe contributions, so collect the names names = [] for line in lines : - if re.match("\S", line) : + if re.match(r"\S", line) : names.append(line.rstrip()) # It's not fair to always put the same people at the head of the list random.shuffle(names) |