diff options
author | Oz Linden <oz@lindenlab.com> | 2013-02-15 09:29:09 -0500 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2013-02-15 09:29:09 -0500 |
commit | 237a48721d9df6a8bbf8a3255bb80f348eb2322e (patch) | |
tree | 38e02085dfbc8cf4529e9094a6e6543021e9146a /indra/lib | |
parent | 365891e0fa480eebdadca4172ae30761bca8a432 (diff) |
clarify windows installer name
Diffstat (limited to 'indra/lib')
-rw-r--r-- | indra/lib/python/indra/util/llmanifest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/lib/python/indra/util/llmanifest.py b/indra/lib/python/indra/util/llmanifest.py index 25a1b95b9a..9cb830a2db 100644 --- a/indra/lib/python/indra/util/llmanifest.py +++ b/indra/lib/python/indra/util/llmanifest.py @@ -85,7 +85,7 @@ def get_default_platform(dummy): }[sys.platform] DEFAULT_SRCTREE = os.path.dirname(sys.argv[0]) -DEFAULT_CHANNEL = 'Second Life Test' +RELEASE_CHANNEL = 'Second Life Release' ARGUMENTS=[ dict(name='actions', @@ -269,7 +269,7 @@ class LLManifest(object): def default_grid(self): return self.args.get('grid', None) == '' def default_channel(self): - return self.args.get('channel', None) == DEFAULT_CHANNEL + return self.args.get('channel', None) == RELEASE_CHANNEL def construct(self): """ Meant to be overriden by LLManifest implementors with code that |