Total Complexity | 1 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | """ |
||
12 | class SpawnerCommand(DaemonCommand): |
||
13 | """ |
||
14 | Starts the spawner |
||
15 | |||
16 | spawner |
||
17 | {--d|daemonize : Become a daemon} |
||
18 | """ |
||
19 | |||
20 | # ------------------------------------------------------------------------------------------------------------------ |
||
21 | def handle(self): |
||
22 | """ |
||
23 | Executes the logger command. |
||
24 | """ |
||
25 | spawner = Spawner() |
||
26 | |||
27 | self.handle_daemon('spawner', spawner) |
||
28 | |||
30 |