Skip to content

Commit 80aec61

Browse files
spgpfifer
authored andcommitted
Fixed Missing on_completion param for MavenJarDownloader (#35)
* Fixed Missing on_completion param for MavenJarDownloader.
1 parent 60f8fc9 commit 80aec61

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,6 @@
55
/build/
66
/dist/
77
/docs/_build/
8+
9+
# IntelliJ idea stuff
10+
.idea

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ def run(self):
169169
"""
170170
Runs when this command is given to setup.py
171171
"""
172-
downloader = MavenJarDownloader()
172+
downloader = MavenJarDownloader(on_completion=lambda : None)
173173
downloader.download_files()
174174
print('''
175175
Now you should run:

0 commit comments

Comments
 (0)