Fixed namegen

I need to redesign TextGenerator a bit, I kinda hacked it to do two things and it's not the most elegant.
This commit is contained in:
Luke Rogers 2013-09-19 10:42:44 +12:00
parent f98774032f
commit c0b3285c4a
2 changed files with 3 additions and 2 deletions

View file

@ -16,6 +16,7 @@ class TextGenerator(object):
Generates one string using the specified templates.
If no templates are specified, use a random template from the default_templates list.
"""
# this is bad
if self.default_templates:
text = self.templates[template or random.choice(self.default_templates)]
else: