Revert "Merge pull request #3 from Sitryk/patch-1"

This reverts commit 4824870275, reversing
changes made to 774cc620d5.
This commit is contained in:
aikaterna
2017-09-17 17:29:50 -07:00
parent 4824870275
commit 603145d1dc

View File

@@ -169,9 +169,7 @@ class ImgWelcome:
def _get_suffix(self, num):
num = str(num)
last = num[-1)]
if num[-2] == "1":
return "th"
last = num[len(num)-1:len(num)]
if last == "1":
return "st"
elif last == "2":