From d77fc7a8b0334e0e1fdcb410fabeb95d7a14b3ca Mon Sep 17 00:00:00 2001 From: Casey Link Date: Fri, 15 Jul 2011 14:32:32 -0400 Subject: [PATCH] New Module: nsfw Somethings just aren't safe work work. --- modules/nsfw.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 modules/nsfw.py diff --git a/modules/nsfw.py b/modules/nsfw.py new file mode 100755 index 0000000..d30aa8c --- /dev/null +++ b/modules/nsfw.py @@ -0,0 +1,18 @@ +#!/usr/bin/python2 +""" +nsfw.py - some things just aren't safe for work, a phenny module +author: Casey Link - for when a link isn't safe for work") + return + phenny.say("!!NSFW!! -> %s <- !!NSFW!!" % (link)) + +nsfw.rule = (['nsfw'], r'(.*)') + +if __name__ == '__main__': + print __doc__.strip() +