Skip to content

Commit

Permalink
Fixed Missing on_completion param for MavenJarDownloader (#35)
Browse files Browse the repository at this point in the history
* Fixed Missing on_completion param for MavenJarDownloader.
  • Loading branch information
spg authored and pfifer committed Nov 21, 2016
1 parent 60f8fc9 commit 80aec61
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@
/build/
/dist/
/docs/_build/

# IntelliJ idea stuff
.idea
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def run(self):
"""
Runs when this command is given to setup.py
"""
downloader = MavenJarDownloader()
downloader = MavenJarDownloader(on_completion=lambda : None)
downloader.download_files()
print('''
Now you should run:
Expand Down

0 comments on commit 80aec61

Please sign in to comment.