A modest string writer

dump.py 201B

1234567891011
  1. # -*- coding: utf-8 -*-
  2. class Plugin():
  3. def __init__(self, subcommand):
  4. self.args = subcommand.args
  5. def render(self):
  6. out = "args = %s" % repr(self.args)
  7. return out