mirror of
https://github.com/Kilian/Trimage.git
synced 2026-01-26 01:58:41 -05:00
Remove unuseful unicode call
This commit is contained in:
parent
e71c22b519
commit
bc8c665d40
1 changed files with 1 additions and 1 deletions
|
|
@ -22,7 +22,7 @@ class TrimageTableView(QTableView):
|
|||
event.accept()
|
||||
filelist = []
|
||||
for url in event.mimeData().urls():
|
||||
filelist.append(unicode(url.toLocalFile()))
|
||||
filelist.append(url.toLocalFile())
|
||||
|
||||
self.emit(SIGNAL("fileDropEvent"), (filelist))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue