Fixed some typos

This commit is contained in:
Lars Kiesow 2014-05-11 20:24:48 +02:00
parent d6cbfdb81c
commit 1d0d13fdc6
No known key found for this signature in database
GPG key ID: 5DAFE8D9C823CE73
5 changed files with 11 additions and 11 deletions

View file

@ -131,6 +131,6 @@
You can test the module by simply executing:: You can test the module by simply executing::
$ pythom -m feedgen $ python -m feedgen
""" """

View file

@ -25,7 +25,7 @@ if __name__ == '__main__':
or sys.argv[1].endswith('atom') \ or sys.argv[1].endswith('atom') \
or sys.argv[1].endswith('podcast') ): or sys.argv[1].endswith('podcast') ):
print_enc ('Usage: %s ( <file>.atom | atom | <file>.rss | rss | podcast )' % \ print_enc ('Usage: %s ( <file>.atom | atom | <file>.rss | rss | podcast )' % \
'pythom -m feedgen') 'python -m feedgen')
print_enc ('') print_enc ('')
print_enc (' atom -- Generate ATOM test output and print it to stdout.') print_enc (' atom -- Generate ATOM test output and print it to stdout.')
print_enc (' rss -- Generate RSS test output and print it to stdout.') print_enc (' rss -- Generate RSS test output and print it to stdout.')