Browse Source

Strip both - and _ from newcog class names

pull/6316/head
Josh 4 years ago
committed by GitHub
parent
commit
73a783cd6b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      discord/__main__.py

5
discord/__main__.py

@ -250,8 +250,9 @@ def newcog(parser, args):
name = args.class_name
else:
name = str(directory.stem)
if '-' in name:
name = name.replace('-', ' ').title().replace(' ', '')
if '-' in name or '_' in name:
translation = str.maketrans('-_', ' ')
name = name.translate(translation).title().replace(' ', '')
else:
name = name.title()

Loading…
Cancel
Save