diff options
author | Gael Pasgrimaud | 2011-06-25 10:18:11 +0200 |
---|---|---|
committer | Gael Pasgrimaud | 2011-06-25 10:18:11 +0200 |
commit | e5dd2ce4074e5a5cb0c3a3b754fd7995891516e4 (patch) | |
tree | abbcea9270ba8d825e024957db1fec877f9834cc | |
parent | b5269a892b3a7dcb89c9c1913797b3d74ff1c476 (diff) | |
download | vimperator-plugins-e5dd2ce4074e5a5cb0c3a3b754fd7995891516e4.tar.bz2 |
only update each 24h
-rw-r--r-- | pypi.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -37,7 +37,7 @@ var Pypi = { } req.open("GET", "http://pypi.python.org/simple/", false); req.send(null); - setTimeout(Pypi.init_packages, 600000); + setTimeout(Pypi.init_packages, 1000*60*60*24); } } |