Skip to content

Commit 3687006

Browse files
committed
[side-track] Stop printing error
1 parent a6910ea commit 3687006

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

side_track/verify.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,7 @@ def verify(exercise: GitAutograderExercise) -> GitAutograderOutput:
9696
)
9797
except (GitAutograderWrongAnswerException, GitAutograderInvalidStateException):
9898
raise
99-
except Exception as e:
100-
print(e)
99+
except Exception:
101100
raise exercise.wrong_answer(["Something bad happened"])
102101
finally:
103102
main_branch.checkout()

0 commit comments

Comments
 (0)