Fixed stupid "random_alphanumeric" typo that got repeated due to tab completion.
This commit is contained in:
parent
c2dd4a7ee4
commit
f1227e396a
2 changed files with 3 additions and 3 deletions
|
|
@ -4,7 +4,7 @@ import string
|
|||
import six
|
||||
|
||||
|
||||
def random_alhpnumeric(length):
|
||||
def random_alphanumeric(length):
|
||||
return ''.join(six.text_type(
|
||||
random.choice(
|
||||
string.ascii_letters + string.digits
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue