|
37 | 37 | import supybot |
38 | 38 | import supybot.world as world |
39 | 39 |
|
40 | | -__version__ = supybot.version.version |
41 | | -__author__ = supybot.Author("Michael Daniel Telatynski", "t3chguy", "postmaster@webdevguru.co.uk") |
42 | | -__contributors__ = {supybot.authors.jlu: |
43 | | - ["options bolding the replacement text", "misc. bug fixes and enhancements"], |
44 | | - supybot.Author('nyuszika7h', 'nyuszika7h', 'nyuszika7h@openmailbox.org'): |
45 | | - ["_unpack_sed method within plugin.py"] |
46 | | - } |
47 | | -__maintainer__ = supybot.authors.limnoria_core |
| 40 | +if not world.supyprocessing: |
| 41 | + __version__ = supybot.version.version |
| 42 | + __author__ = supybot.Author("Michael Daniel Telatynski", "t3chguy", "postmaster@webdevguru.co.uk") |
| 43 | + __contributors__ = {supybot.authors.jlu: |
| 44 | + ["options bolding the replacement text", "misc. bug fixes and enhancements"], |
| 45 | + supybot.Author('nyuszika7h', 'nyuszika7h', 'nyuszika7h@openmailbox.org'): |
| 46 | + ["_unpack_sed method within plugin.py"] |
| 47 | + } |
| 48 | + __maintainer__ = supybot.authors.limnoria_core |
48 | 49 |
|
49 | | -__url__ = 'https://github.com/progval/Limnoria/tree/master/plugins/SedRegex' |
| 50 | + __url__ = 'https://github.com/progval/Limnoria/tree/master/plugins/SedRegex' |
50 | 51 |
|
51 | | -from . import sedregex |
52 | | -from . import config |
53 | | -from . import plugin |
54 | | -from importlib import reload |
| 52 | + from . import sedregex |
| 53 | + from . import config |
| 54 | + from . import plugin |
| 55 | + from importlib import reload |
55 | 56 |
|
56 | | -reload(sedregex) |
57 | | -reload(config) |
58 | | -reload(plugin) |
| 57 | + reload(sedregex) |
| 58 | + reload(config) |
| 59 | + reload(plugin) |
59 | 60 |
|
60 | | -if world.testing: |
61 | | - from . import test |
| 61 | + if world.testing: |
| 62 | + from . import test |
62 | 63 |
|
63 | | -Class = plugin.Class |
64 | | -configure = config.configure |
| 64 | + Class = plugin.Class |
| 65 | + configure = config.configure |
65 | 66 |
|
66 | 67 | # vim:set shiftwidth=4 tabstop=4 expandtab textwidth=79: |
0 commit comments