Minor changes.

This commit is contained in:
Jeremy Fincher 2003-12-16 13:35:42 +00:00
parent 7036073b53
commit 86363520b8
2 changed files with 2 additions and 1 deletions

View File

@ -9,6 +9,7 @@ Upload the archives to upload.sf.net, add to the release on SF.net.
Announce the release in a News item on SF.net. Announce the release in a News item on SF.net.
Announce the release on Freshmeat.net. Announce the release on Freshmeat.net.
Announce the release on PyPI via "python setup.py register". Announce the release on PyPI via "python setup.py register".
Announce the release on the forums.
Add a topic to #supybot announcing the release. Add a topic to #supybot announcing the release.
Make a release-MAJOR_MINOR_PATCHLEVEL tag. (cvs tag ...) Make a release-MAJOR_MINOR_PATCHLEVEL tag. (cvs tag ...)
Make a release-MAJOR_MINOR_PATCHLEVEL-branch branch tag. (cvs tag -b ...) Make a release-MAJOR_MINOR_PATCHLEVEL-branch branch tag. (cvs tag -b ...)

View File

@ -277,7 +277,7 @@ class Http(callbacks.Privmsg):
#We received a single argument. Zipcode or station id. #We received a single argument. Zipcode or station id.
else: else:
zip = privmsgs.getArgs(args) zip = privmsgs.getArgs(args)
zip = zip.replace(',','') zip = zip.replace(',', '')
zip = zip.lower().split() zip = zip.lower().split()
url = 'http://www.hamweather.net/cgi-bin/hw3/hw3.cgi?'\ url = 'http://www.hamweather.net/cgi-bin/hw3/hw3.cgi?'\
'config=&forecast=zandh&pands=%s&Submit=GO' % args[0] 'config=&forecast=zandh&pands=%s&Submit=GO' % args[0]