bzr revid: fp@tinyerp.com-20090226072653-dycmsljrmy42wtrz
This commit is contained in:
Fabien Pinckaers 2009-02-26 08:26:53 +01:00
parent c92678c7fd
commit 2ba3aaf0ad
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ import tools
def random_name():
random.seed()
d = [random.choice(string.letters) for x in xrange(10) ]
d = [random.choice(string.ascii_letters) for x in xrange(10) ]
name = "".join(d)
return name