From 943d6daf73ce001d0f09e2fffbe3752e0ff325ac Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Wed, 10 Apr 2013 14:33:57 +0300 Subject: [PATCH] test: Fix opp-client not printing progress This avoid KeyError expection and fixes print usage. --- test/opp-client | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/test/opp-client b/test/opp-client index 3078d490a..878c263c2 100755 --- a/test/opp-client +++ b/test/opp-client @@ -49,23 +49,25 @@ class OppClient: print("Transfer created: %s" % path) def error(self, err): - print err + print(err) mainloop.quit() def properties_changed(self, interface, properties, invalidated, path): if path != self.transfer_path: return - if properties['Status'] == 'complete' or \ - properties['Status'] == 'error': + if "Status" in properties and \ + (properties["Status"] == "complete" or \ + properties["Status"] == "error"): if self.verbose: - print("Transfer %s" % properties['Status']) + print("Transfer %s" % properties["Status"]) mainloop.quit() return - if properties["Transferred"] == None: + if "Transferred" not in properties: return + value = properties["Transferred"] speed = (value - self.transferred) / 1000 print("Transfer progress %d/%d at %d kBps" % (value, self.transfer_size, -- 2.47.3