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

Commit 4b09c3e

Browse files
committed
Remove debug=True to fix error registering job
1 parent 20d7719 commit 4b09c3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ For example, this will print "hello world" every 10 seconds. You can output mult
190190
class myPlugin(Plugin):
191191

192192
def register_jobs(self):
193-
job = myJob(10, debug=True)
193+
job = myJob(10)
194194
self.jobs.append(job)
195195
```
196196
#### Plugin misc

0 commit comments

Comments
 (0)