adaption for python version less 3.x (see issue 6465) for details
svn: r21516
This commit is contained in:
parent
80f25e3806
commit
968b4a882d
@ -184,17 +184,17 @@ class MediaView(ListView):
|
||||
if not sel_data:
|
||||
return
|
||||
#modern file managers provide URI_LIST. For Windows split sel_data.data
|
||||
if win():
|
||||
files = sel_data.data.split('\n')
|
||||
else:
|
||||
files = sel_data.get_uris()
|
||||
files = sel_data.get_uris()
|
||||
for file in files:
|
||||
clean_string = fix_encoding(
|
||||
file.replace('\0',' ').replace("\r", " ").strip())
|
||||
protocol, site, mfile, j, k, l = urlparse(clean_string)
|
||||
if protocol == "file":
|
||||
name = cuni(url2pathname(
|
||||
if sys.version_info[0] < 3:
|
||||
name = cuni(url2pathname(
|
||||
mfile.encode(glocale.getfilesystemencoding())))
|
||||
else:
|
||||
name = cuni(url2pathname(mfile))
|
||||
mime = get_type(name)
|
||||
if not is_valid_type(mime):
|
||||
return
|
||||
|
Loading…
Reference in New Issue
Block a user