Diff between bd83307026417ae846eeb824d0d4e78a13d3dd69 and 92056d5daeb252cf5e8fe871e181b9c56b00bd24
Changed Files
| File | Additions | Deletions | Status |
| test/test-profile | +4 | -1 | modified |
Full Patch
diff --git a/test/test-profile b/test/test-profile
index 5a3f955..a87853d 100755
--- a/test/test-profile
+++ b/test/test-profile
@@ -75,7 +75,10 @@ class Profile(dbus.service.Object):
fd = fd.take()
print("NewConnection(%s, %d)" % (path, fd))
for key in properties.keys():
- print(" %s = %s" % key, properties[key])
+ if key == "Version" or key == "Features":
+ print(" %s = 0x%04x" % (key, properties[key]))
+ else:
+ print(" %s = %s" % (key, properties[key]))
os.close(fd)