aboutsummaryrefslogtreecommitdiff
path: root/crosperf/field.py
diff options
context:
space:
mode:
authorZhizhou Yang <zhizhouy@google.com>2017-07-22 01:00:32 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-07-22 01:00:32 +0000
commit18caef1edd870ff3850fe2c417bbcec00c2ba7e0 (patch)
treebf139ee25415cecde142e95791edba3803b2452a /crosperf/field.py
parent3690e025de8daaed03c4acb02d2b054e5c4c0dd5 (diff)
parent4307f4735e9a4e3189e8d43f7493bb677a4d06ba (diff)
downloadtoolchain-utils-18caef1edd870ff3850fe2c417bbcec00c2ba7e0.tar.gz
Merge branch 'aosp/mirror-chromium-master' into update_utilsandroid-o-mr1-preview-2android-o-mr1-preview-1
am: 4307f4735e Change-Id: Ie59600dce0788d54aa6e4e039867a27a9a67d427
Diffstat (limited to 'crosperf/field.py')
-rw-r--r--crosperf/field.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/crosperf/field.py b/crosperf/field.py
index bc92e2cc..6821d4d3 100644
--- a/crosperf/field.py
+++ b/crosperf/field.py
@@ -68,8 +68,8 @@ class BooleanField(Field):
return True
elif value.lower() == 'false':
return False
- raise TypeError("Invalid value for '%s'. Must be true or false." %
- self.name)
+ raise TypeError(
+ "Invalid value for '%s'. Must be true or false." % self.name)
class IntegerField(Field):