Fixed some typos
This commit is contained in:
parent
d6cbfdb81c
commit
1d0d13fdc6
5 changed files with 11 additions and 11 deletions
|
@ -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
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
|
@ -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.')
|
||||||
|
|
Loading…
Reference in a new issue