~ubuntu-branches/debian/sid/exaile/sid

« back to all changes in this revision

Viewing changes to plugins/contextinfo/__init__.py

  • Committer: Package Import Robot
  • Author(s): Vincent Cheng
  • Date: 2013-10-26 16:55:00 UTC
  • mfrom: (0.2.3)
  • Revision ID: package-import@ubuntu.com-20131026165500-6x29udlb6vxt6q3s
Tags: 3.3.2-1
* New upstream release.
* Add debian/patches/20_use-logind-to-shutdown.patch: allow shutdown plugin
  to support both logind in addition to ConsoleKit. Thanks to Iain Lane.
* Remove references to Shoutcast in package descriptions. (Closes: #721682)
* (Re-)add lintian override for executable-not-elf-or-script.
* Fix lintian warning vcs-field-not-canonical.
* Remove deprecated DMUA flag in debian/control.
* Update Standards version from 3.9.3 to 3.9.4, no changes required.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
from xlgui.widgets.common import DragTreeView
9
9
import HTMLParser
10
10
from StringIO import StringIO
11
 
import Image
 
11
try:
 
12
    from PIL import Image
 
13
except ImportError:
 
14
    import Image
12
15
import base64
13
16
import glib
14
17
import gobject