Fixed stupid "random_alphanumeric" typo that got repeated due to tab completion.

This commit is contained in:
Rory-Finnegan 2014-09-04 10:31:05 -04:00
commit f1227e396a
2 changed files with 3 additions and 3 deletions

View file

@ -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