[Pkg-bitcoin-commits] [python-quamash] 129/269: Undo unnecessary change

Jonas Smedegaard dr at jones.dk
Fri Nov 24 11:26:23 UTC 2017


This is an automated email from the git hooks/post-receive script.

js pushed a commit to branch master
in repository python-quamash.

commit ca5acf54fe88d2201ca66c1833a7c5e279483cf1
Author: Arve Knudsen <arve.knudsen at gmail.com>
Date:   Mon Nov 24 11:49:38 2014 +0100

    Undo unnecessary change
---
 quamash/__init__.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/quamash/__init__.py b/quamash/__init__.py
index 777d066..1b27654 100644
--- a/quamash/__init__.py
+++ b/quamash/__init__.py
@@ -313,10 +313,10 @@ class QEventLoop(_baseclass):
 
 		self._logger.debug('Adding callback {} with delay {}'.format(handle, delay))
 		timer = QtCore.QTimer(self.__app)
-		self.__timers.append(timer)
 		timer.timeout.connect(upon_timeout)
 		timer.setSingleShot(True)
 		timer.start(delay * 1000)
+		self.__timers.append(timer)
 
 		return _Cancellable(timer, self)
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-bitcoin/python-quamash.git



More information about the Pkg-bitcoin-commits mailing list