diff options
author | Patrick Monnerat <[email protected]> | 2019-01-26 15:22:58 +0100 |
---|---|---|
committer | Victor Kareh <[email protected]> | 2019-01-30 15:59:07 -0500 |
commit | 6447d7c97a71521f2cdc0765a81c20aec8b90e04 (patch) | |
tree | a9c36cae6fb6e7ef26b52845cd36c32fe87f07fd /examples/block-size-column.py | |
parent | a6a1bed0d97285ad9fabff9a5116f5b6a0e2c000 (diff) | |
download | python-caja-6447d7c97a71521f2cdc0765a81c20aec8b90e04.tar.bz2 python-caja-6447d7c97a71521f2cdc0765a81c20aec8b90e04.tar.xz |
Modernize examples
The example extension scripts need to be in sync with new versions of
referenced foreign packages.
This commit also makes them compatible with Python version 3 (retaining
Python 2 compatibility).
An additional example extension "mixed" is added: it implements all caja
extension features and can also be used as a new extension pattern. See
source header comment for a description.
Ref: https://github.com/mate-desktop/python-caja/pull/34#issuecomment-457257832
Diffstat (limited to 'examples/block-size-column.py')
-rw-r--r-- | examples/block-size-column.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/examples/block-size-column.py b/examples/block-size-column.py index 3fd64ce..c59d3e6 100644 --- a/examples/block-size-column.py +++ b/examples/block-size-column.py @@ -1,5 +1,11 @@ import os -import urllib + +try: + # Python 3. + from urllib.parse import unquote +except: + # Python 2. + from urllib import unquote from gi.repository import GObject, Caja @@ -17,6 +23,6 @@ class ColumnExtension(GObject.GObject, Caja.ColumnProvider, Caja.InfoProvider): if file.get_uri_scheme() != 'file': return - filename = urllib.unquote(file.get_uri()[7:]) + filename = unquote(file.get_uri()[7:]) file.add_string_attribute('block_size', str(os.stat(filename).st_blksize)) |