Recommend chardet instead of charade. Closes GH-1096.

This commit is contained in:
Valentin Lorentz 2015-04-28 20:26:17 +02:00
parent 758dc6d57f
commit 36a646661d
2 changed files with 10 additions and 2 deletions

View File

@ -1,4 +1,4 @@
charade
chardet
pytz
python-dateutil
python-gnupg

View File

@ -95,7 +95,15 @@ if sys.version_info[0:3] == (3, 3, 1) and hasattr(select, 'poll'):
commandsProcessed = 0
ircs = [] # A list of all the IRCs.
#ircs = [] # A list of all the IRCs.
class Foo(list):
def remove(self, item):
print('--'*100)
print('Removing %r' % item)
import traceback
traceback.print_stack()
super().remove(item)
ircs = Foo()
def getIrc(network):
network = network.lower()