Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion stackexchange/site.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ def all_badges(self, **kw):
return self.build('badges', Badge, 'badges', kw)

def badges(self, ids = None, **kw):
"""Returns the badge objectss with the given IDs."""
"""Returns the badge objects with the given IDs."""
if ids == None:
return self._user_prop('badges', Badge, 'users', kw)
else:
Expand Down
2 changes: 1 addition & 1 deletion testsuite.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import datetime, re, stackauth, stackexchange, stackexchange.web, unittest
import stackexchange.sites as stacksites
from stackexchange.core import StackExchangeError
# for Python 3 compatiblity
# for Python 3 compatibility
try:
import htmlentitydefs
except ImportError:
Expand Down