From 7b2dee26fe8f6136dccbe7c1927a76e328fb820c Mon Sep 17 00:00:00 2001 From: Charles Chen Date: Tue, 12 Jul 2016 22:00:22 -0700 Subject: [PATCH] Fix typo in Dataflow runner monitoring message --- sdks/python/apache_beam/internal/apiclient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdks/python/apache_beam/internal/apiclient.py b/sdks/python/apache_beam/internal/apiclient.py index 99c7090c362c..363b8e152e1c 100644 --- a/sdks/python/apache_beam/internal/apiclient.py +++ b/sdks/python/apache_beam/internal/apiclient.py @@ -466,7 +466,7 @@ def create_job(self, job): # The response is a Job proto with the id for the new job. logging.info('Created job with id: [%s]', response.id) logging.info( - 'To accesss the Dataflow monitoring console, please navigate to ' + 'To access the Dataflow monitoring console, please navigate to ' 'https://console.developers.google.com/project/%s/dataflow/job/%s', self.google_cloud_options.project, response.id)