bootstrap-vz/plugins/build_metadata/buildmetadata.py
Anders Ingemann a8364fe04d logging
2013-07-08 23:13:58 +02:00

9 lines
170 B
Python

from base import Task
class PrintInfo(Task):
description = 'Printing `info\' to the console'
def run(self, info):
super(PrintInfo, self).run(info)
print('info')