Skip to content

Commit

Permalink
V0.2: Cronjob setup adjust command name
Browse files Browse the repository at this point in the history
The application is now called 'facebook_feed_sync' instead of
'fb_feed_sync'.

Signed-off-by: Sebastian Fricke <[email protected]>
  • Loading branch information
initBasti committed Dec 18, 2020
1 parent a022a09 commit 42c23aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cronsetup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def create_cronjob(sync):
job = []
interval = enter_interval()
for s in sync:
command = str(f'python3 -m fb_feed_sync {s}')
command = str(f'python3 -m facebook_feed_sync {s}')
job.append(
cron.new(command=command).minute.every(interval))
cron.write()
Expand Down

0 comments on commit 42c23aa

Please sign in to comment.