Skip to content

Commit

Permalink
fix for #26
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobias Kummer committed Dec 21, 2018
1 parent 4a10f0d commit 5ea6bf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BlenderUpdater.py
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ def check(self):
finallist = []
for sub in results:
sub = list(filter(None, sub))
sub[0] = sub[0][11:] # Remove redundant parts of the URL (download...)
sub[0] = sub[0][10:] # Remove redundant parts of the URL (download...)
finallist.append(sub)
finallist = list(filter(None, finallist))

Expand Down

0 comments on commit 5ea6bf2

Please sign in to comment.