From df5d024706215188a7898751b6654d8e3afe3173 Mon Sep 17 00:00:00 2001 From: Vinay Potluri Date: Wed, 5 Apr 2017 13:36:30 -0500 Subject: [PATCH] Fixing nits in scripts/readme.py to pass pep8 check Change-Id: If2ee4c76d9fa9e86080ec2c08b877e4148d8e279 --- scripts/readme.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/readme.py b/scripts/readme.py index 0afc52fc..4e38ff82 100755 --- a/scripts/readme.py +++ b/scripts/readme.py @@ -41,6 +41,7 @@ Team and repository tags """ + def find_docs(): """Yields files as per the whitelist.""" loc = "../doc/source/{}.rst" @@ -61,8 +62,7 @@ def concat_docs(): """Concatinates files yielded by the generator `find_docs`.""" file_path = os.path.dirname(os.path.realpath(__file__)) head, tail = os.path.split(file_path) - outfile = head +"/README.rst" - + outfile = head + "/README.rst" if not os.path.isfile(outfile): print("../README.rst not found, exiting!") exit(1)