1
0
mirror of https://github.com/bspeice/metrik synced 2025-07-03 06:45:07 -04:00

Make sure there's a newline for the cron jobs

This commit is contained in:
Bradlee Speice
2016-08-24 07:09:43 -04:00
parent 0eb0966729
commit 7e81f78a6d
3 changed files with 8 additions and 3 deletions

View File

@ -1,2 +1,2 @@
__version__ = '0.2.2'
__version__ = '0.2.3'
__release__ = __version__

View File

@ -29,7 +29,7 @@ def build_cron_file():
cron_string + ' ' + EXEC + ' ' + FLOW_FLAG + ' ' + flow_name
)
return '\n'.join(cron_strings)
return '\n'.join(cron_strings) + '\n'
def list_flows():