Unbreak reset config

This commit is contained in:
Et0h 2014-11-30 14:33:22 +00:00
parent 344ec5e5d4
commit dbb0ff067f

View File

@ -71,6 +71,9 @@ class ConfigDialog(QtGui.QDialog):
self.QtGui.QDesktopServices.openUrl("http://syncplay.pl/guide/client/")
def _isURL(self, path):
if path is None:
return False
if "http://" in path:
return True