tools: Fix map-client to use new print syntax

print now requires () on newer python:
  File "./map-client", line 101
    print err
            ^
This commit is contained in:
Luiz Augusto von Dentz 2013-01-14 17:39:28 +02:00
parent 363e55779d
commit b4f482375a

View File

@ -98,7 +98,7 @@ class MapClient:
print("Operation succeeded")
def error(self, err):
print err
print(err)
mainloop.quit()
def transfer_complete(self, path):