commit 909acd1d7a9ee0e0e0f5374edffcbb3e0685efba
parent 9b230aa94806385d02682d7ad7f2c65d2c2d517c
Author: Marcel <MTRNord@users.noreply.github.com>
Date: Tue, 15 Nov 2016 21:07:32 +0100
Disable test because switching to new iitc repo
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/__init__.py b/__init__.py
@@ -41,7 +41,7 @@ def _parse_onlineRepos(url, ext=''):
for tree in value:
for attribute, value in tree.items():
if attribute == "path":
- if value.endswith(ext):
+ if value.endswith(ext) and not 'total-conversion-build.user.js' in value and not 'user-location.user.js' in value and not 'test' in value:
files.append(url.replace("https://api.github.com/repos/", "https://raw.githubusercontent.com/").replace("git/trees/",'').replace("master?recursive=1","master/") + value)
return files
else: