summaryrefslogtreecommitdiff
path: root/indra/develop.py
diff options
context:
space:
mode:
authorNathan Wilcox <inoshiro@lindenlab.com>2010-01-13 16:08:30 -0800
committerNathan Wilcox <inoshiro@lindenlab.com>2010-01-13 16:08:30 -0800
commitbee98d70e3a8eca7f6f6f80d4ee6a14939771ae0 (patch)
tree036fa687c111a7d8f21549b36613c34b00e4d3c6 /indra/develop.py
parentdd7840aa9e0627430753522c4480212cf032463e (diff)
DEV-44838 - Add the string "DEV-44838" to assertion failures to future devs understand preconditions on windows run().
Diffstat (limited to 'indra/develop.py')
-rwxr-xr-xindra/develop.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/develop.py b/indra/develop.py
index 59722c4bc2..a8a7b63aa7 100755
--- a/indra/develop.py
+++ b/indra/develop.py
@@ -586,7 +586,7 @@ class WindowsSetup(PlatformSetup):
def run(self, command, name=None, retry_on=None, retries=1):
'''Run a program. If the program fails, raise an exception.'''
- assert name is not None, 'On windows an executable path must be given in name.'
+ assert name is not None, 'On windows an executable path must be given in name. [DEV-44838]'
if os.path.isfile(name):
path = name
else: