1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-05-02 05:05:43 +00:00
seahub/tests/common/utils.py

5 lines
120 B
Python
Raw Normal View History

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