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:
parent
f98774032f
commit
c0b3285c4a
2 changed files with 3 additions and 2 deletions
|
@ -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:
|
||||
|
|
Reference in a new issue