|
From: <fcr...@us...> - 2012-01-02 03:17:51
|
Revision: 789
http://safekeep.svn.sourceforge.net/safekeep/?rev=789&view=rev
Author: fcrawford
Date: 2012-01-02 03:17:45 +0000 (Mon, 02 Jan 2012)
Log Message:
-----------
Corrected test for usable trickle as reported by Ken Bass
Modified Paths:
--------------
safekeep/trunk/safekeep
Modified: safekeep/trunk/safekeep
===================================================================
--- safekeep/trunk/safekeep 2012-01-01 07:59:55 UTC (rev 788)
+++ safekeep/trunk/safekeep 2012-01-02 03:17:45 UTC (rev 789)
@@ -1119,7 +1119,7 @@
if limit_ul:
trickle.extend(['-u', str(limit_ul)])
if len(trickle):
- if try_to_run([trickle_cmd, '-V']) is not None:
+ if try_to_run([trickle_cmd, '-V']) is None:
warn('Trickle not available, bandwidth limiting disabled')
trickle = []
args.extend(trickle)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|