Skip to content

Commit 9eecede

Browse files
committedOct 27, 2019
Fill in author info for plugins missing it
1 parent 9268356 commit 9eecede

File tree

5 files changed

+7
-13
lines changed

5 files changed

+7
-13
lines changed
 

‎plugins/Aka/__init__.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@
4141
# in here if you're keeping the plugin in CVS or some similar system.
4242
__version__ = ""
4343

44-
# XXX Replace this with an appropriate author or supybot.Author instance.
45-
__author__ = supybot.authors.unknown
44+
__author__ = supybot.authors.progval
4645

4746
# This is a dictionary mapping supybot.Author instances to lists of
4847
# contributions.

‎plugins/Conditional/__init__.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@
4141
# in here if you're keeping the plugin in CVS or some similar system.
4242
__version__ = "0.1"
4343

44-
# XXX Replace this with an appropriate author or supybot.Author instance.
45-
__author__ = supybot.authors.unknown
44+
__author__ = supybot.Author('Daniel Folkinshteyn', 'nanotube', 'nanotube@users.sourceforge.net')
4645

4746
# This is a dictionary mapping supybot.Author instances to lists of
4847
# contributions.

‎plugins/GPG/__init__.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@
3939
# in here if you're keeping the plugin in CVS or some similar system.
4040
__version__ = ""
4141

42-
# XXX Replace this with an appropriate author or supybot.Author instance.
43-
__author__ = supybot.authors.unknown
42+
__author__ = supybot.authors.progval
4443

4544
# This is a dictionary mapping supybot.Author instances to lists of
4645
# contributions.

‎plugins/MessageParser/__init__.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -40,16 +40,14 @@
4040
# in here if you're keeping the plugin in CVS or some similar system.
4141
__version__ = "0.1"
4242

43-
# XXX Replace this with an appropriate author or supybot.Author instance.
44-
__author__ = supybot.authors.unknown
45-
43+
__author__ = supybot.Author('Daniel Folkinshteyn', 'nanotube', 'nanotube@users.sourceforge.net')
4644

4745
# This is a dictionary mapping supybot.Author instances to lists of
4846
# contributions.
4947
__contributors__ = {}
5048

5149
# This is a url where the most recent plugin package can be downloaded.
52-
__url__ = '' # 'http://supybot.com/Members/yourname/MessageParser/download'
50+
__url__ = ''
5351

5452
from . import config
5553
from . import plugin

‎plugins/NickAuth/__init__.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,14 @@
3939
# in here if you're keeping the plugin in CVS or some similar system.
4040
__version__ = ""
4141

42-
# XXX Replace this with an appropriate author or supybot.Author instance.
43-
__author__ = supybot.authors.unknown
42+
__author__ = supybot.authors.progval
4443

4544
# This is a dictionary mapping supybot.Author instances to lists of
4645
# contributions.
4746
__contributors__ = {}
4847

4948
# This is a url where the most recent plugin package can be downloaded.
50-
__url__ = '' # 'http://supybot.com/Members/yourname/NickAuth/download'
49+
__url__ = ''
5150

5251
from . import config
5352
from . import plugin

0 commit comments

Comments
 (0)
Please sign in to comment.