Browse Source
Strip both - and _ from newcog class names
pull/6316/head
Josh
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
2 deletions
-
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() |
|
|
|
|
|
|
|