Skip to content

Commit

Permalink
Fixed installer error
Browse files Browse the repository at this point in the history
  • Loading branch information
mcandre committed Aug 26, 2011
1 parent 4bd5ba2 commit f216cea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qc/__init__.py
Expand Up @@ -39,10 +39,10 @@ def dicts(key_values=key_value_generator(), size=(0, 100)):

def unicodes(size=(0, 100), minunicode=0, maxunicode=255):
for r in (size[0], size[1]):
yield u''.join(unichr(random.randint(minunicode, maxunicode)) \
yield ''.join(unichr(random.randint(minunicode, maxunicode)) \
for _ in xrange(r))
while True:
yield u''.join(unichr(random.randint(minunicode, maxunicode)) \
yield ''.join(unichr(random.randint(minunicode, maxunicode)) \
for _ in xrange(random.randint(size[0], size[1])))


Expand Down

0 comments on commit f216cea

Please sign in to comment.