summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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()