Closed cmuller closed 4 years ago
The elif action[-2:-1] != "ed" test is always true because the right test should use action[-2:] in the comparison.
elif action[-2:-1] != "ed"
action[-2:]
This should fix #37.
Tested with:
I'm curious, do you know when this will get deployed to t2bot?
The
elif action[-2:-1] != "ed"
test is always true because the right test should useaction[-2:]
in the comparison.This should fix #37.
Tested with: