We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3390878 commit 83085f7Copy full SHA for 83085f7
aux.py
@@ -4,5 +4,4 @@ def cleanUp(filePath):
4
os.remove(filePath)
5
6
def getRandomString(length):
7
- return("".join(random.choice(string.ascii_letters + string.digits) for i in range(length)))
8
-
+ return(bytes("".join(random.choice(string.ascii_letters + string.digits) for i in range(length)), "ascii"))
0 commit comments