From fd524a060223288f40e386a82074a521ffab2d46 Mon Sep 17 00:00:00 2001 From: club-mate Date: Sun, 31 Jul 2011 03:50:12 +0200 Subject: mtgox: s/wget/curl/g --- mtgox/mtgox.getDepth | 2 +- mtgox/mtgox.getTrades | 2 +- mtgox/mtgox.ticker | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mtgox/mtgox.getDepth b/mtgox/mtgox.getDepth index 7401d532..effc28a0 100755 --- a/mtgox/mtgox.getDepth +++ b/mtgox/mtgox.getDepth @@ -1,3 +1,3 @@ #! /bin/sh # get mtgox market depth -wget -qO- http://mtgox.com/code/data/getDepth.php +$ curl -ksS http://mtgox.com/code/data/getDepth.php diff --git a/mtgox/mtgox.getTrades b/mtgox/mtgox.getTrades index 4901e379..fd0d0ea9 100755 --- a/mtgox/mtgox.getTrades +++ b/mtgox/mtgox.getTrades @@ -1,3 +1,3 @@ #! /bin/sh # get mtgox last trades -wget -qO- http://mtgox.com/code/data/getTrades.php +$ curl -ksS http://mtgox.com/code/data/getTrades.phl diff --git a/mtgox/mtgox.ticker b/mtgox/mtgox.ticker index bbfcc52d..54a150f0 100755 --- a/mtgox/mtgox.ticker +++ b/mtgox/mtgox.ticker @@ -1,4 +1,4 @@ #! /bin/sh # get mtgox ticker data set -euf -wget -qO- http://mtgox.com/code/data/ticker.php +curl -ksS http://mtgox.com/code/data/ticker.php -- cgit v1.2.3 From 5d864765609f9959ad6a48226a80523dcd52a8a7 Mon Sep 17 00:00:00 2001 From: club-mate Date: Sun, 31 Jul 2011 04:12:02 +0200 Subject: mtgox: s/http/https/g --- mtgox/mtgox.getDepth | 2 +- mtgox/mtgox.getTrades | 2 +- mtgox/mtgox.ticker | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mtgox/mtgox.getDepth b/mtgox/mtgox.getDepth index effc28a0..9a607979 100755 --- a/mtgox/mtgox.getDepth +++ b/mtgox/mtgox.getDepth @@ -1,3 +1,3 @@ #! /bin/sh # get mtgox market depth -$ curl -ksS http://mtgox.com/code/data/getDepth.php +$ curl -ksS https://mtgox.com/code/data/getDepth.php diff --git a/mtgox/mtgox.getTrades b/mtgox/mtgox.getTrades index fd0d0ea9..73e5a68d 100755 --- a/mtgox/mtgox.getTrades +++ b/mtgox/mtgox.getTrades @@ -1,3 +1,3 @@ #! /bin/sh # get mtgox last trades -$ curl -ksS http://mtgox.com/code/data/getTrades.phl +$ curl -ksS https://mtgox.com/code/data/getTrades.phl diff --git a/mtgox/mtgox.ticker b/mtgox/mtgox.ticker index 54a150f0..b24dfb35 100755 --- a/mtgox/mtgox.ticker +++ b/mtgox/mtgox.ticker @@ -1,4 +1,4 @@ #! /bin/sh # get mtgox ticker data set -euf -curl -ksS http://mtgox.com/code/data/ticker.php +curl -ksS https://mtgox.com/code/data/ticker.php -- cgit v1.2.3 From aea6becfa4f8b8d17bf580c881de1e80f35edcbc Mon Sep 17 00:00:00 2001 From: makefu Date: Sun, 31 Jul 2011 04:17:25 +0200 Subject: arping: now 'fail early' --- census/arping.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/census/arping.py b/census/arping.py index 1b51ab1b..3245f1ee 100755 --- a/census/arping.py +++ b/census/arping.py @@ -27,9 +27,7 @@ try: return [] except Exception as e: - log.error("Cannot load arping functions!" + str(e)) - def arpingy(iprange='',iface=''): - raise Exception ('arping not available') + raise Exception("Cannot load arping functions!" + str(e)) if __name__ =='__main__': -- cgit v1.2.3