diff options
author | Benoit Steiner <bsteiner@google.com> | 2016-08-16 14:01:13 -0800 |
---|---|---|
committer | TensorFlower Gardener <gardener@tensorflow.org> | 2016-08-16 15:17:08 -0700 |
commit | 8b3d8c8b5e96036ec78e01292c56ce099c5a62ab (patch) | |
tree | 5942281d5ece05ae07c144031ea69c40f9691545 /util/python | |
parent | f5abc68bd74a8ecec037acac3e0851419201fc48 (diff) |
Merge changes from github.
Change: 130451359
Diffstat (limited to 'util/python')
-rwxr-xr-x | util/python/python_config.sh | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/util/python/python_config.sh b/util/python/python_config.sh index 6eb8a39ece..76ad559f02 100755 --- a/util/python/python_config.sh +++ b/util/python/python_config.sh @@ -69,10 +69,9 @@ for path in all_paths: if len(paths) == 1: print(paths[0]) -ret_paths = "" -for path in paths: - ret_paths += path + " " -print(ret_paths) +else: + ret_paths = " ".join(paths) + print(ret_paths) END } |