remove tabs from README.md
This commit is contained in:
@@ -71,14 +71,15 @@ TaskScheduler provides two tasks which can be bound to an event in an event map.
|
|||||||
#### ShellScheduler
|
#### ShellScheduler
|
||||||
ShellScheduler schedules Shell command *cmd*. The placeholders **{maskname}**, **{pathname}** and **{src_pathname}** are replaced with the actual values of the event. ShellScheduler has the same optional arguments as TaskScheduler and provides the same tasks.
|
ShellScheduler schedules Shell command *cmd*. The placeholders **{maskname}**, **{pathname}** and **{src_pathname}** are replaced with the actual values of the event. ShellScheduler has the same optional arguments as TaskScheduler and provides the same tasks.
|
||||||
```python
|
```python
|
||||||
s1 = ShellScheduler(cmd="/usr/local/bin/task.sh {maskname} {pathname} {src_pathname}")
|
s1 = ShellScheduler(
|
||||||
|
cmd="/usr/local/bin/task.sh {maskname} {pathname} {src_pathname}")
|
||||||
```
|
```
|
||||||
### Event maps
|
### Event maps
|
||||||
EventMap maps event types to tasks. It is possible to set a list of tasks to run multiple tasks on a single event. If the task of an event type is set to None, it is ignored.
|
EventMap maps event types to tasks. It is possible to set a list of tasks to run multiple tasks on a single event. If the task of an event type is set to None, it is ignored.
|
||||||
This is an example:
|
This is an example:
|
||||||
```python
|
```python
|
||||||
event_map = EventMap({
|
event_map = EventMap({
|
||||||
"IN_CLOSE_NOWRITE": [s.schedule, s1.schedule],
|
"IN_CLOSE_NOWRITE": [s.schedule, s1.schedule],
|
||||||
"IN_CLOSE_WRITE": s.schedule})
|
"IN_CLOSE_WRITE": s.schedule})
|
||||||
```
|
```
|
||||||
The following event types are available:
|
The following event types are available:
|
||||||
@@ -209,7 +210,7 @@ s = TaskScheduler(
|
|||||||
dirs=False)
|
dirs=False)
|
||||||
|
|
||||||
event_map = EventMap({
|
event_map = EventMap({
|
||||||
"IN_CLOSE_WRITE": s.schedule,
|
"IN_CLOSE_WRITE": s.schedule,
|
||||||
"IN_DELETE": s.cancel,
|
"IN_DELETE": s.cancel,
|
||||||
"IN_DELETE_SELF": s.cancel,
|
"IN_DELETE_SELF": s.cancel,
|
||||||
"IN_MODIFY": s.cancel,
|
"IN_MODIFY": s.cancel,
|
||||||
|
|||||||
Reference in New Issue
Block a user