commit | 8b3d8c8b5e96036ec78e01292c56ce099c5a62ab | [log] [tgz] |
---|---|---|
author | Benoit Steiner <bsteiner@google.com> | Tue Aug 16 14:01:13 2016 -0800 |
committer | TensorFlower Gardener <gardener@tensorflow.org> | Tue Aug 16 15:17:08 2016 -0700 |
tree | 5942281d5ece05ae07c144031ea69c40f9691545 | |
parent | f5abc68bd74a8ecec037acac3e0851419201fc48 [diff] [blame] |
Merge changes from github. Change: 130451359
diff --git a/util/python/python_config.sh b/util/python/python_config.sh index 6eb8a39..76ad559 100755 --- a/util/python/python_config.sh +++ b/util/python/python_config.sh
@@ -69,10 +69,9 @@ 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 }