summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSean B. Palmer <http://inamidst.com/sbp/>2008-03-02 14:44:14 +0000
committerSean B. Palmer <http://inamidst.com/sbp/>2008-03-02 14:44:14 +0000
commitf81eae836d70efa96847bf7060389755861a5dc2 (patch)
tree739f34a12209aa2db33afead076bff4a59783e3a
parent8f2e14481a186ed725262d47c0ba39537288826f (diff)
downloadbot-f81eae836d70efa96847bf7060389755861a5dc2.tar.gz
bot-f81eae836d70efa96847bf7060389755861a5dc2.tar.bz2
bot-f81eae836d70efa96847bf7060389755861a5dc2.zip
Better __doc__ consistency; really a test of some mercurial issues.
-rwxr-xr-xmodules/head.py2
-rwxr-xr-xmodules/seen.py2
-rwxr-xr-xmodules/weather.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/modules/head.py b/modules/head.py
index 8f687fa..10a5337 100755
--- a/modules/head.py
+++ b/modules/head.py
@@ -145,4 +145,4 @@ noteuri.rule = r'.*(http://[^<> "]+)[,.]?'
noteuri.priority = 'low'
if __name__ == '__main__':
- print __doc__
+ print __doc__.strip()
diff --git a/modules/seen.py b/modules/seen.py
index 189be61..26dc05f 100755
--- a/modules/seen.py
+++ b/modules/seen.py
@@ -46,4 +46,4 @@ f_note.rule = r'(.*)'
f_note.priority = 'low'
if __name__ == '__main__':
- print __doc__
+ print __doc__.strip()
diff --git a/modules/weather.py b/modules/weather.py
index a8fdf4f..77f0fd0 100755
--- a/modules/weather.py
+++ b/modules/weather.py
@@ -419,4 +419,4 @@ def f_weather(self, origin, match, args):
f_weather.rule = (['weather'], r'(.*)')
if __name__ == '__main__':
- print __doc__
+ print __doc__.strip()