Changeset 5552
- Timestamp:
- 02/24/10 18:59:32 (3 years ago)
- Files:
-
- 1 modified
-
pm/trunk/plugins/dns-cache-snoop/sources/main.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pm/trunk/plugins/dns-cache-snoop/sources/main.py
r5521 r5552 140 140 141 141 for row in self.store: 142 out += "[%s] %s (%d)\n" % (row[0] and ' YES' or 'NO',142 out += "[%s] %s (%d)\n" % (row[0] and '+' or '-', 143 143 row[1], row[2]) 144 144 … … 216 216 217 217 for line in contents.splitlines(): 218 self.store.append((False, line.strip(), 0)) 218 line = line.strip() 219 220 if line: 221 self.store.append((False, line, 0)) 219 222 220 223 dialog.hide()
