scripts/download.py: use a more terse api for fetching git commit date
[openwrt/staging/hauke.git] / scripts / download.py
index f7fd534ea530c7bec31d367fb3019f4486e69272..779d7b3de27ea5c9d515831e5718e2f93fd9b548 100755 (executable)
@@ -305,7 +305,7 @@ class DownloadMethodGitHubTarball(DownloadMethod):
     def _init_commit_ts(self):
         if self.commit_ts is not None:
             return
-        url = self._make_repo_url_path('commits', self.version)
+        url = self._make_repo_url_path('git', 'commits', self.version)
         ct = self.commit_ts_cache.get(url)
         if ct is not None:
             self.commit_ts = ct
@@ -313,7 +313,7 @@ class DownloadMethodGitHubTarball(DownloadMethod):
         resp = self._make_request(url)
         data = resp.read()
         data = json.loads(data)
-        date = data['commit']['committer']['date']
+        date = data['committer']['date']
         date = datetime.datetime.strptime(date, '%Y-%m-%dT%H:%M:%SZ')
         date = date.timetuple()
         ct = calendar.timegm(date)