Skip to content

Commit 9adb05d

Browse files
committed
Tuple-ize string format argument.
Addresses: #1318 (comment)
1 parent 7114005 commit 9adb05d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

gcloud/bigquery/table.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -847,7 +847,7 @@ def upload_from_file(self, # pylint: disable=R0913,R0914
847847

848848
# Base URL may change once we know simple vs. resumable.
849849
base_url = connection.API_BASE_URL + '/upload'
850-
path = '/projects/%s/jobs' % self._dataset.project
850+
path = '/projects/%s/jobs' % (self._dataset.project,)
851851
upload_url = connection.build_api_url(api_base_url=base_url, path=path)
852852

853853
# Use apitools 'Upload' facility.

0 commit comments

Comments
 (0)