diff options
author | Oz Linden <oz@lindenlab.com> | 2011-08-08 23:23:34 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2011-08-08 23:23:34 -0400 |
commit | 881a215535d7bd3b9efc55b9f36722ceec4ccef1 (patch) | |
tree | c54cf8cddd1ee5abccb1227f9c8a6be5de1c37cc /indra/newview/viewer_manifest.py | |
parent | f7e5282badf8756614d8907f307adfa7ac1ce09c (diff) |
more idiosyncracies for beta channel
Diffstat (limited to 'indra/newview/viewer_manifest.py')
-rw-r--r-- | indra/newview/viewer_manifest.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index 07382e8e85..37099bf29b 100644 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -147,10 +147,11 @@ class ViewerManifest(LLManifest): icon_path="icons/" channel_type=self.channel_lowerword() if channel_type == 'release' \ - or channel_type == 'betaviewer' \ or channel_type == 'development' \ : icon_path += channel_type + elif channel_type == 'betaviewer' : + icon_path += 'beta' elif re.match('project.*',channel_type) : icon_path += 'project' else : |