aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xlinden/scripts/install.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/linden/scripts/install.py b/linden/scripts/install.py
index c69644b..a7c0a48 100755
--- a/linden/scripts/install.py
+++ b/linden/scripts/install.py
@@ -36,6 +36,7 @@ $/LicenseInfo$
36import sys 36import sys
37import os.path 37import os.path
38import re 38import re
39import string
39 40
40# Look for indra/lib/python in all possible parent directories ... 41# Look for indra/lib/python in all possible parent directories ...
41# This is an improvement over the setup-path.py method used previously: 42# This is an improvement over the setup-path.py method used previously:
@@ -106,7 +107,7 @@ class InstallFile(object):
106 107
107 def _is_md5sum_match(self): 108 def _is_md5sum_match(self):
108 hasher = md5(file(self.filename, 'rb').read()) 109 hasher = md5(file(self.filename, 'rb').read())
109 if hasher.hexdigest() == self.md5sum: 110 if string.lower(hasher.hexdigest()) == string.lower(self.md5sum):
110 return True 111 return True
111 return False 112 return False
112 113