aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/chase.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/chase.py')
-rw-r--r--src/plugins/chase.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/chase.py b/src/plugins/chase.py
index 290ef6b..e94497b 100644
--- a/src/plugins/chase.py
+++ b/src/plugins/chase.py
@@ -42,7 +42,7 @@ class Chase:
@return :bool Whether information could be fetched
'''
- command = ['wget', 'http://www.doeschasehaveajobyet.com', '-O', '-']
+ command = ['curl', 'http://www.doeschasehaveajobyet.com']
proc = subprocess.Popen(command, stderr = sys.stderr, stdout = subprocess.PIPE)
page = proc.stdout.read()
proc.wait()