From 53ceed32ba65d624c192cfed466583c7269cdbe4 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Fri, 25 Feb 2011 21:36:40 +0100 Subject: [PATCH] Time variables where in seconds but I need minutes. --- pakfire/constants.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pakfire/constants.py b/pakfire/constants.py index 98ed9f738..fa0a27656 100644 --- a/pakfire/constants.py +++ b/pakfire/constants.py @@ -42,8 +42,8 @@ BUILD_ROOT = "/var/lib/pakfire/build" SOURCE_DOWNLOAD_URL = "http://source.ipfire.org/source-3.x/" SOURCE_CACHE_DIR = os.path.join(CACHE_DIR, "sources") -TIME_10M = 60*10 -TIME_24H = 60*60*24 +TIME_10M = 10 +TIME_24H = 60*24 SOURCE_PACKAGE_META = """\ -- 2.39.5