We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 538aa92 commit 81c05b7Copy full SHA for 81c05b7
1 file changed
gcloud/bigquery/dataset.py
@@ -250,7 +250,7 @@ def create(self, client=None):
250
``client`` stored on the current dataset.
251
"""
252
client = self._require_client(client)
253
- path = '/projects/%s/datasets' % self.project
+ path = '/projects/%s/datasets' % (self.project,)
254
api_response = client.connection.api_request(
255
method='POST', path=path, data=self._build_resource())
256
self._set_properties(api_response)
0 commit comments