Skip to content

Commit a591a8f

Browse files
author
~SH4DOW ROOT
authored
Proper Error Message Added
1 parent b3abab0 commit a591a8f

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

app.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,8 @@ def getPR(site, username):
3434

3535
if __name__ == '__main__':
3636
click.echo("Welcome to Code Review System\n")
37-
execute_board()
37+
try:
38+
execute_board()
39+
except yaml.YAMLError as exc:
40+
print(exc)
3841

0 commit comments

Comments
 (0)