From 6e5f92ffc743c9b1765ffe4b79aac29a7059d464 Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Thu, 30 Mar 2017 01:47:23 -0800 Subject: [PATCH] Fix docstring for get_variable to indent collections correctly. Change: 151681007 --- tensorflow/python/ops/variable_scope.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/python/ops/variable_scope.py b/tensorflow/python/ops/variable_scope.py index 1de95f12913..2f97abdc791 100644 --- a/tensorflow/python/ops/variable_scope.py +++ b/tensorflow/python/ops/variable_scope.py @@ -1129,7 +1129,7 @@ get_variable.__doc__ = get_variable_or_local_docstring % ( "Gets an existing variable with these parameters or create a new one.", "", "trainable: If `True` also add the variable to the graph collection\n" - " `GraphKeys.TRAINABLE_VARIABLES` (see `tf.Variable`).\n", + " `GraphKeys.TRAINABLE_VARIABLES` (see `tf.Variable`).\n ", "GraphKeys.GLOBAL_VARIABLES")