~ubuntu-branches/ubuntu/trusty/gwibber/trusty

« back to all changes in this revision

Viewing changes to gwibber/microblog/util/__init__.py

  • Committer: Package Import Robot
  • Author(s): Robert Ancell, Ken VanDine, Robert Ancell
  • Date: 2012-05-14 17:39:39 UTC
  • mfrom: (130.1.1 precise-proposed)
  • Revision ID: package-import@ubuntu.com-20120514173939-p4px9mculkege533
Tags: 3.4.1-0ubuntu2
[ Ken VanDine ]
* debian/control
  - dropped unneeded recommends for python-libproxy (LP: #997706)
  - dropped unneeded depends for python-simplejson
* debian/gwibber.install
  - dropped unused service icons for jaiku and brightkite
  
[ Robert Ancell ]
* debian/control:
  - Use standards version 3.9.3
  - Drop dependency on liblaunchpad-integration-3.0-dev
* debian/patches/01_lpi.patch:
  - Dropped, we no longer do Launchpad integration

Show diffs side-by-side

added added

removed removed

Lines of Context:
233
233
    pixbuf = None
234
234
    try:
235
235
      pixbuf = GdkPixbuf.Pixbuf.new_from_file_at_size(icon, iconsize, iconsize)
236
 
    except GLib.Error as e:
 
236
    except GLib.GError as e:
237
237
      logger.error("Avatar failure - %s - %s", icon, e.message)
238
238
      resources.del_avatar(icon)
239
239
 
240
240
    if pixbuf:
241
241
      try:
242
242
        notification.set_icon_from_pixbuf(pixbuf)
243
 
      except GLib.Error as e:
 
243
      except GLib.GError as e:
244
244
        logger.error("Notification failure - %s", e.message)
245
245
 
246
246
    if timeout: