bootstrap-vz/plugins/build_metadata/buildmetadata.py

10 lines
170 B
Python
Raw Normal View History

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')