Fix the mistake of code indent

Change-Id: Ib13e25a25d594935db515e2dce9989bbba024e01
This commit is contained in:
Guoqiang Ding 2017-12-25 10:38:08 +08:00
parent 29d6028043
commit e798bccc3c
1 changed files with 1 additions and 1 deletions

View File

@ -149,7 +149,7 @@ class TempestRun(command.Command):
discover_path = os.path.join(top_level_path, 'test_discover')
file_contents = init.TESTR_CONF % (top_level_path, discover_path)
with open('.testr.conf', 'w+') as testr_conf_file:
testr_conf_file.write(file_contents)
testr_conf_file.write(file_contents)
def take_action(self, parsed_args):
returncode = 0