| Index: remoting/webapp/build-webapp.py
|
| diff --git a/remoting/webapp/build-webapp.py b/remoting/webapp/build-webapp.py
|
| index 9ed59d87b2bb12f6a696923841891d57db4773ac..0062b813b1c5b1eb8d147bec9d3cbb14d240ff4a 100755
|
| --- a/remoting/webapp/build-webapp.py
|
| +++ b/remoting/webapp/build-webapp.py
|
| @@ -76,7 +76,7 @@ def parseBool(boolStr):
|
|
|
| Returns a bool on success; raises ValueError on failure.
|
| """
|
| - lower = boolStr.tolower()
|
| + lower = boolStr.lower()
|
| if lower in ['0', 'false']: return False
|
| if lower in ['1', 'true']: return True
|
| raise ValueError('not a boolean string {!r}'.format(boolStr))
|
|
|