Skip to content
This repository has been archived by the owner on Aug 15, 2022. It is now read-only.

Commit

Permalink
Remove debug=True to fix error registering job
Browse files Browse the repository at this point in the history
  • Loading branch information
finnito committed Oct 18, 2017
1 parent 20d7719 commit 4b09c3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ For example, this will print "hello world" every 10 seconds. You can output mult
class myPlugin(Plugin):

def register_jobs(self):
job = myJob(10, debug=True)
job = myJob(10)
self.jobs.append(job)
```
#### Plugin misc
Expand Down

0 comments on commit 4b09c3e

Please sign in to comment.