From 017a03d298de507be86eba5c413166ad0246014f Mon Sep 17 00:00:00 2001 From: Brent Shaffer Date: Tue, 17 Jan 2017 18:54:33 -0800 Subject: [PATCH] fixes typo in detect_properties [(#761)](https://github.com/GoogleCloudPlatform/python-docs-samples/issues/761) --- samples/snippets/detect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/snippets/detect.py b/samples/snippets/detect.py index cf9afc61..a0a2de51 100644 --- a/samples/snippets/detect.py +++ b/samples/snippets/detect.py @@ -218,7 +218,7 @@ def detect_properties(path): print('fraction: {}'.format(color.pixel_fraction)) print('r: {}'.format(color.color.red)) print('g: {}'.format(color.color.green)) - print('g: {}'.format(color.color.blue)) + print('b: {}'.format(color.color.blue)) def detect_properties_cloud_storage(uri):