def stats(self):
        plugins = plugins_get()
        version = version_get()

        print(
            template('stats_plugin.mustache', {
                'version': version,
                'plugins': plugins
            }))
 def default(self):
     print(template("intro.mustache", {'version': version_get(),
         'color': True}))
Beispiel #3
0
    def stats(self):
        plugins = plugins_get()
        version = version_get()

        print(template("stats_plugin.mustache", {"version": version, "plugins": plugins}))