Fixed open_url() under Qt. It didn't work under Linux.

This commit is contained in:
Virgil Dupras 2011-09-29 15:01:37 -04:00
parent 73d22de752
commit 5284decd67
1 changed files with 2 additions and 1 deletions

View File

@ -293,5 +293,6 @@ class DupeGuru(QObject):
QMessageBox.information(window, '', msg)
def open_url(self, url):
self.open_path(url)
url = QUrl(url)
QDesktopServices.openUrl(url)