
commit 0d396cc60c710d8a7ecc726b7f7ea82900a0afa0 Author: Damian Johnson <atagar@torproject.org> Date: Sat Jan 19 13:47:53 2013 -0800 Fixing fingerprint listing Ok, stopped being lazy and fixed the fingerprint listing for realz this time... https://trac.torproject.org/7990 --- src/cli/connections/connPanel.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/cli/connections/connPanel.py b/src/cli/connections/connPanel.py index 146c3f9..ec11944 100644 --- a/src/cli/connections/connPanel.py +++ b/src/cli/connections/connPanel.py @@ -183,7 +183,7 @@ class ConnectionPanel(panel.Panel, threading.Thread): self.valsLock.acquire() armConf = conf.get_config("arm") - armConf.set("features.connection.listingType", listingType.keys()[Listing.index_of(listingType)]) + armConf.set("features.connection.listingType", Listing.keys()[Listing.index_of(listingType)]) # if we're sorting by the listing then we need to resort if entries.SortAttr.LISTING in CONFIG["features.connection.order"]:
participants (1)
-
atagar@torproject.org