PluginDownloader: Fix issue with repositories that use a subfolder. (fix commit 0a442dfd15)

This commit is contained in:
Valentin Lorentz 2012-07-10 08:44:33 +00:00
parent 95c55c8d0f
commit c37d8c9310
1 changed files with 2 additions and 1 deletions

View File

@ -84,9 +84,10 @@ class GithubRepository(GitRepository):
def getPluginList(self):
plugins = self._query(
'repos',
'%s/%s/contents' % (
'%s/%s/contents%s' % (
self._username,
self._reponame,
self._path,
)
)
if plugins is None: