Fix xkcd comics made in January throwing an error

Previously, any commit written in January would throw an error because the array key for January was falsely '1' instead of the integer 1. This would lead to the moth name not being found and the error occuring.
This PR fixes that problem by changing the key of January to the integer 1.

**How to reproduce:**
Ask your CloudBot to `xkcd Regular Expressions`, an error will be shown in console.
This commit is contained in:
xxyy 2014-02-15 00:16:03 +01:00
parent e8876c2c48
commit 694cbbe81f
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ from util import hook, http
xkcd_re = (r'(.*:)//(www.xkcd.com|xkcd.com)(.*)', re.I)
months = {'1': 'January', 2: 'February', 3: 'March', 4: 'April', 5: 'May', 6: 'June', 7: 'July', 8: 'August',
months = {1: 'January', 2: 'February', 3: 'March', 4: 'April', 5: 'May', 6: 'June', 7: 'July', 8: 'August',
9: 'September', 10: 'October', 11: 'November', 12: 'December'}