Merge pull request #2997 from owncloud/fix_shell-integration-python3

fix python3 syntax errors
This commit is contained in:
Daniel Molkentin 2015-03-23 11:28:28 +01:00
commit f455c71338

View file

@ -67,7 +67,7 @@ class SocketConnect(GObject.GObject):
print("Sending failed.") print("Sending failed.")
self.reconnect() self.reconnect()
else: else:
print "Cannot send, not connected!" print("Cannot send, not connected!")
def addListener(self, listener): def addListener(self, listener):
self._listeners.append(listener) self._listeners.append(listener)
@ -85,7 +85,7 @@ class SocketConnect(GObject.GObject):
self.connected = True self.connected = True
print("Setting connected to %r" % self.connected ) print("Setting connected to %r" % self.connected )
self._watch_id = GObject.io_add_watch(self._sock, GObject.IO_IN, self._handle_notify) self._watch_id = GObject.io_add_watch(self._sock, GObject.IO_IN, self._handle_notify)
print "Socket watch id: "+str(self._watch_id) print("Socket watch id: "+str(self._watch_id))
return False # don't run again return False # don't run again
except Exception as e: except Exception as e:
print("Could not connect to unix socket." + str(e)) print("Could not connect to unix socket." + str(e))
@ -175,7 +175,7 @@ class MenuExtension(GObject.GObject, Nautilus.MenuProvider):
def menu_share(self, menu, file): def menu_share(self, menu, file):
filename = get_local_path(file.get_uri()) filename = get_local_path(file.get_uri())
print "Share file "+filename print("Share file "+filename)
socketConnect.sendCommand("SHARE:"+filename+"\n") socketConnect.sendCommand("SHARE:"+filename+"\n")