mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 11:09:23 +01:00
Recommend chardet instead of charade. Closes GH-1096.
This commit is contained in:
parent
758dc6d57f
commit
36a646661d
@ -1,4 +1,4 @@
|
||||
charade
|
||||
chardet
|
||||
pytz
|
||||
python-dateutil
|
||||
python-gnupg
|
||||
|
10
src/world.py
10
src/world.py
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user