From f81eae836d70efa96847bf7060389755861a5dc2 Mon Sep 17 00:00:00 2001 From: "Sean B. Palmer" Date: Sun, 2 Mar 2008 14:44:14 +0000 Subject: Better __doc__ consistency; really a test of some mercurial issues. --- modules/head.py | 2 +- modules/seen.py | 2 +- modules/weather.py | 2 +- 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() -- cgit v1.2.3-1-g7c22