Skip to content

Commit

Permalink
Bump to 1.1.7; Fixed incorrect argument passing.
Browse files Browse the repository at this point in the history
- Fixed passing too many arguments to create_progress_dialog()
  • Loading branch information
dschreij committed Aug 10, 2016
1 parent 49b797a commit 3ea39d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion QOpenScienceFramework/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.1.6"
__version__ = "1.1.7"
__author__ = "Daniel Schreij"

import os
Expand Down
3 changes: 1 addition & 2 deletions QOpenScienceFramework/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -902,8 +902,7 @@ def __download(self, reply, download_url, *args, **kwargs):
raise KeyError("progressDialog missing field {}".format(e))
icon = QtGui.QIcon()
title = _("Transfer in progress")
progress_indicator = self.__create_progress_dialog(text, size, icon,
title)
progress_indicator = self.__create_progress_dialog(text, size)
kwargs['progressDialog'] = progress_indicator
kwargs['downloadProgress'] = self.__transfer_progress

Expand Down

0 comments on commit 3ea39d2

Please sign in to comment.