Skip to content

Commit 3ea39d2

Browse files
committed
Bump to 1.1.7; Fixed incorrect argument passing.
- Fixed passing too many arguments to create_progress_dialog()
1 parent 49b797a commit 3ea39d2

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

QOpenScienceFramework/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "1.1.6"
1+
__version__ = "1.1.7"
22
__author__ = "Daniel Schreij"
33

44
import os

QOpenScienceFramework/manager.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -902,8 +902,7 @@ def __download(self, reply, download_url, *args, **kwargs):
902902
raise KeyError("progressDialog missing field {}".format(e))
903903
icon = QtGui.QIcon()
904904
title = _("Transfer in progress")
905-
progress_indicator = self.__create_progress_dialog(text, size, icon,
906-
title)
905+
progress_indicator = self.__create_progress_dialog(text, size)
907906
kwargs['progressDialog'] = progress_indicator
908907
kwargs['downloadProgress'] = self.__transfer_progress
909908

0 commit comments

Comments
 (0)