[Pkg-privacy-commits] [tails-installer] 03/03: Don't update the releases before October
Intrigeri
intrigeri at moszumanska.debian.org
Wed May 24 15:28:16 UTC 2017
This is an automated email from the git hooks/post-receive script.
intrigeri pushed a commit to tag 3.95.1
in repository tails-installer.
commit c725ae82a4e79f5aa855b233cce835f47ec09703
Author: Martin Briza <mbriza at redhat.com>
Date: Tue Jun 21 17:23:30 2016 +0200
Don't update the releases before October
---
liveusb/gui.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/liveusb/gui.py b/liveusb/gui.py
index b282252..8e86d31 100755
--- a/liveusb/gui.py
+++ b/liveusb/gui.py
@@ -704,7 +704,8 @@ class LiveUSBData(QObject):
self.updateThread.finished.connect(self.fillReleases)
self.updateThread.finished.connect(self.updateThreadStopped)
- QTimer.singleShot(0, self.updateThread.start)
+ if datetime.today().year >= 2016 and datetime.today().month > 9:
+ QTimer.singleShot(0, self.updateThread.start)
@pyqtSlot()
def fillReleases(self):
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-privacy/packages/tails-installer.git
More information about the Pkg-privacy-commits
mailing list