1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-06-21 04:42:56 +00:00
seahub/tests/common/utils.py

5 lines
120 B
Python

import random, string
def randomword(length):
return ''.join(random.choice(string.lowercase) for i in range(length))