2013-06-09 16:25:59 +02:00
|
|
|
from base import Task
|
2013-05-16 08:00:28 +02:00
|
|
|
|
|
|
|
|
|
|
|
class PrintInfo(Task):
|
2013-06-09 20:29:54 +02:00
|
|
|
description = 'Printing `info\' to the console'
|
|
|
|
|
2013-05-16 08:00:28 +02:00
|
|
|
def run(self, info):
|
|
|
|
super(PrintInfo, self).run(info)
|
|
|
|
print('info')
|