tolower() -> lower()

This commit is contained in:
Florian Bruhin 2014-01-17 11:29:06 +01:00
parent 6e700ba4ad
commit df48208524

View File

@ -13,7 +13,7 @@ def register_all():
is_cmd):
if cls.bind:
if cls.name is None:
name = cls.__name__.tolower()
name = cls.__name__.lower()
else:
name = cls.name
cmd_dict[name] = cls()