diff -Nru gwibber-service-sina-0.9.1/debian/changelog gwibber-service-sina-0.9.1/debian/changelog --- gwibber-service-sina-0.9.1/debian/changelog 2012-03-19 19:25:33.000000000 +0000 +++ gwibber-service-sina-0.9.1/debian/changelog 2012-04-20 15:12:40.000000000 +0000 @@ -1,3 +1,11 @@ +gwibber-service-sina (0.9.1-0ubuntu7) precise; urgency=low + + * debian/patches/lp959757.patch + - removed last import of gnomekeyring and make sure username is + utf-8 (LP: #959757) + + -- Ken VanDine Fri, 20 Apr 2012 11:12:33 -0400 + gwibber-service-sina (0.9.1-0ubuntu6) precise; urgency=low * debian/patches/gtk3.patch diff -Nru gwibber-service-sina-0.9.1/debian/patches/lp959757.patch gwibber-service-sina-0.9.1/debian/patches/lp959757.patch --- gwibber-service-sina-0.9.1/debian/patches/lp959757.patch 1970-01-01 00:00:00.000000000 +0000 +++ gwibber-service-sina-0.9.1/debian/patches/lp959757.patch 2012-04-19 10:46:23.000000000 +0000 @@ -0,0 +1,25 @@ +=== modified file '__init__.py' +--- old/__init__.py 2012-03-19 18:20:52 +0000 ++++ new/__init__.py 2012-04-18 18:17:16 +0000 +@@ -1,7 +1,6 @@ + from gwibber.microblog import network, util + from htmlentitydefs import name2codepoint + import re +-import gnomekeyring + from oauth import oauth + from gwibber.microblog.util import resources + from gettext import lgettext as _ + +=== modified file 'gtk/sina/__init__.py' +--- old/gtk/sina/__init__.py 2012-03-19 19:17:33 +0000 ++++ new/gtk/sina/__init__.py 2012-04-19 10:45:16 +0000 +@@ -141,7 +141,7 @@ + + account_data = json.loads(urllib2.urlopen(apireq.to_url()).read()) + +- self.account["username"] = account_data["screen_name"] ++ self.account["username"] = account_data["screen_name"].encode("utf-8") + self.account["user_id"] = account_data["id"] + + if isinstance(account_data, dict): + diff -Nru gwibber-service-sina-0.9.1/debian/patches/series gwibber-service-sina-0.9.1/debian/patches/series --- gwibber-service-sina-0.9.1/debian/patches/series 2012-03-19 19:21:13.000000000 +0000 +++ gwibber-service-sina-0.9.1/debian/patches/series 2012-04-18 18:33:55.000000000 +0000 @@ -1,2 +1,3 @@ logger.patch gtk3.patch +lp959757.patch