Skip to content

Commit 81c05b7

Browse files
committed
Adhere to @dhermes' sensibility about formatting string usage.
1 parent 538aa92 commit 81c05b7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

gcloud/bigquery/dataset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ def create(self, client=None):
250250
``client`` stored on the current dataset.
251251
"""
252252
client = self._require_client(client)
253-
path = '/projects/%s/datasets' % self.project
253+
path = '/projects/%s/datasets' % (self.project,)
254254
api_response = client.connection.api_request(
255255
method='POST', path=path, data=self._build_resource())
256256
self._set_properties(api_response)

0 commit comments

Comments
 (0)