Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions nemo-media-columns/nemo-media-columns.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,8 @@ def update_cb(self, provider, handle, closure, file):
try:
with stopit.ThreadingTimeout(self.timeout):
info = self.get_media_info(uri, mimetype)
except stopit.utils.TimeoutException:
print("nemo-media-columns failed to process '%s' within a reasonable amount of time" % (gfile.get_uri(), e))
except stopit.utils.TimeoutException as e:
print("nemo-media-columns failed to process '%s' within a reasonable amount of time: %s" % (uri, e))

# TODO: we shouldn't set attributes on files that didn't match any of our mimetypes.
# we do currently so the given columns can be set to '' - we should maybe do this in
Expand Down