str() -> unicode()

This commit is contained in:
Miroslav Stampar
2010-05-28 13:05:02 +00:00
parent f24187f251
commit a3db3c03c1
17 changed files with 31 additions and 31 deletions

View File

@@ -155,7 +155,7 @@ def start():
if not conf.dropSetCookie:
for _, cookie in enumerate(conf.cj):
cookie = str(cookie)
cookie = unicode(cookie)
index = cookie.index(" for ")
cookieStr += "%s;" % cookie[8:index]
@@ -267,7 +267,7 @@ def start():
action()
except exceptionsTuple, e:
e = str(e)
e = unicode(e)
if conf.multipleTargets:
e += ", skipping to next url"