Skip to content

Commit

Permalink
Fix reading a file
Browse files Browse the repository at this point in the history
  • Loading branch information
c-bata committed Jan 18, 2020
1 parent fecd606 commit f9060b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion report.py
Expand Up @@ -47,7 +47,7 @@ def main():
print("Repository:", pull_number)

with open(markdown_report_path, 'r') as f:
kurobako_report = "\n".join(f.readlines())
kurobako_report = f.read()

client = Github(ACCESS_TOKEN)
issue = client.get_repo(repository).get_issue(pull_number)
Expand Down

0 comments on commit f9060b3

Please sign in to comment.