Fix typo in a constant

This commit is contained in:
Jakub Wilk
2016-10-16 22:28:45 +02:00
parent 43f61f9471
commit 10a28e0654
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -42,4 +42,4 @@ REQ_IF_MODIFIED_SINCE = "If-Modified-Since"
# (Lower Case) #
# ##############################################################################
RES_ETAG = "etag"
RES_LAST_MODIFED = "last-modified"
RES_LAST_MODIFIED = "last-modified"
+1 -1
View File
@@ -208,7 +208,7 @@ class GithubObject(object):
'''
:type: str
'''
return self._headers.get(Consts.RES_LAST_MODIFED)
return self._headers.get(Consts.RES_LAST_MODIFIED)
def get__repr__(self, params):
"""