Diff between b3610fe12fa6e576f924beea18f2a8393cce1ce0 and 5f8e548ca93a138d768c3682d707448d075e54b4

Changed Files

File Additions Deletions Status
test/test-profile +3 -0 modified

Full Patch

diff --git a/test/test-profile b/test/test-profile
index 7cfc376..46879d0 100755
--- a/test/test-profile
+++ b/test/test-profile
@@ -28,6 +28,9 @@ class Profile(dbus.service.Object):
 	def NewConnection(self, path, fd, properties):
 		fd = fd.take()
 		print("NewConnection(%s, %d)" % (path, fd))
+		for key in properties.keys():
+			print("  %s = %s" % key, properties[key])
+
 		os.close(fd)
 
 if __name__ == '__main__':