fns fns! & clean up & clean up output too.

This commit is contained in:
mousebot 2020-04-23 17:43:21 -03:00
parent a462e45803
commit 62a5e23f2b
2 changed files with 6 additions and 6 deletions

View File

@ -157,7 +157,7 @@ def main():
# normal sentence:
else:
writesent(combo_model)
output.write(str(' \n \n * \n \n'))
output.write(str('*\n\n'))
# add a star between each appended set.
output.close()
@ -192,7 +192,7 @@ def main():
# normal sentence:
else:
writesent(text_model)
output.write(str(' \n \n * \n \n'))
output.write(str('*\n\n'))
# add a star between each appended set.
output.close()

View File

@ -7,7 +7,7 @@ with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name='mkv-this',
version='0.1.29',
version='0.1.30',
description='cli wrapper for markovify: take a text file, markovify, output the results to a text file.',
long_description=long_description,
long_description_content_type='text/markdown',