diff options
Diffstat (limited to 'indra/newview/viewer_manifest.py')
| -rwxr-xr-x | indra/newview/viewer_manifest.py | 5 | 
1 files changed, 2 insertions, 3 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index 3ef588ae41..1146922d5d 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -63,7 +63,6 @@ class ViewerManifest(LLManifest):      def construct(self):          super(ViewerManifest, self).construct()          self.path(src="../../scripts/messages/message_template.msg", dst="app_settings/message_template.msg") -        self.path(src="../../etc/message.xml", dst="app_settings/message.xml")          if self.is_packaging_viewer():              with self.prefix(src_dst="app_settings"): @@ -274,13 +273,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)  | 
