diff --git a/bigquery/google/cloud/bigquery/_helpers.py b/bigquery/google/cloud/bigquery/_helpers.py index 7557111d100e..6641fbe01b42 100644 --- a/bigquery/google/cloud/bigquery/_helpers.py +++ b/bigquery/google/cloud/bigquery/_helpers.py @@ -318,7 +318,7 @@ def _validate(self, value): :raises: ValueError if value is not allowed. """ if value not in self.ALLOWED: - raise ValueError('Pass one of: %s' ', '.join(self.ALLOWED)) + raise ValueError('Pass one of: %s' % ', '.join(self.ALLOWED)) class UDFResource(object):