From 4978d30922056cc882f5ba3b598968f8c98c4d83 Mon Sep 17 00:00:00 2001 From: James Lu Date: Sat, 14 Mar 2020 11:12:20 -0700 Subject: [PATCH] plugin_tutorial: reflect changes made to __contributors__ handling --- develop/plugin_tutorial.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/develop/plugin_tutorial.rst b/develop/plugin_tutorial.rst index 7fc2aaf..8bfadcf 100644 --- a/develop/plugin_tutorial.rst +++ b/develop/plugin_tutorial.rst @@ -135,11 +135,11 @@ main dev, muahaha), I would do:: Keep this in mind as we get to the next item... ``__contributors__`` is a dictionary mapping supybot.Author instances to lists -of things they contributed. If someone adds a command named foo to your -plugin, the list for that author should be ``["foo"]``, or perhaps even -``["added foo command"]``. The main author shouldn't be referenced here, as it -is assumed that everything that wasn't contributed by someone else was done by -the main author. For now we have no contributors, so we'll leave it blank. +of things they contributed. For example, if someone adds a command named ``foo`` +to your plugin, the list for that author could be ``["added foo command"]``. +The main author shouldn't be referenced here, as it is assumed that everything +that wasn't contributed by someone else was done by the main author. +For now we have no contributors, so we'll leave it blank. Lastly, the ``__url__`` attribute should just reference the download URL for the plugin. Since this is just an example, we'll leave this blank.