From 10a28e0654095fefdd1c6f09a2bceb4e064ec34f Mon Sep 17 00:00:00 2001 From: Jakub Wilk Date: Sun, 16 Oct 2016 22:28:45 +0200 Subject: [PATCH] Fix typo in a constant --- github/Consts.py | 2 +- github/GithubObject.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/github/Consts.py b/github/Consts.py index 19088973..2c1a169a 100644 --- a/github/Consts.py +++ b/github/Consts.py @@ -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" diff --git a/github/GithubObject.py b/github/GithubObject.py index 82241ef3..6cf8c7ac 100644 --- a/github/GithubObject.py +++ b/github/GithubObject.py @@ -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): """