Author: atagar Date: 2011-02-28 17:39:55 +0000 (Mon, 28 Feb 2011) New Revision: 24277
Modified: arm/trunk/src/util/torTools.py Log: Fix for minor bug with the last commit.
Modified: arm/trunk/src/util/torTools.py =================================================================== --- arm/trunk/src/util/torTools.py 2011-02-28 17:11:26 UTC (rev 24276) +++ arm/trunk/src/util/torTools.py 2011-02-28 17:39:55 UTC (rev 24277) @@ -1595,6 +1595,8 @@ if circStatusResults == "": result = [] # we don't have any client circuits elif circStatusResults != None: + result = [] + for line in circStatusResults.split("\n"): fpStart = line.find("$") fpEnd = line.find("=", fpStart)
tor-commits@lists.torproject.org