From 5ffbc7aef1251366173a4b01cb4453a585d9e064 Mon Sep 17 00:00:00 2001 From: Brian Dolbec Date: Sat, 26 Dec 2015 15:23:34 -0800 Subject: remotedb.py: Add climit due to sslfetch API change --- layman/remotedb.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'layman') diff --git a/layman/remotedb.py b/layman/remotedb.py index b9c4ae0..5a66a3f 100644 --- a/layman/remotedb.py +++ b/layman/remotedb.py @@ -139,13 +139,13 @@ class RemoteDB(DbBase): filepath, mpath, tpath, sig = self._paths(url) if 'file://' in url: success, olist, timestamp = self._fetch_file( - url, mpath, tpath) + url, mpath, tpath, climit=60) elif sig: success, olist, timestamp = fetcher.fetch_content( - url[0], tpath) + url[0], tpath, climit=60) else: success, olist, timestamp = fetcher.fetch_content( - url, tpath) + url, tpath, climit=60) if not success: #succeeded = False continue -- cgit v1.2.3-65-gdbad