Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar-network
diff options
context:
space:
mode:
Diffstat (limited to 'sugar-network')
-rwxr-xr-xsugar-network4
1 files changed, 2 insertions, 2 deletions
diff --git a/sugar-network b/sugar-network
index 4fdf588..0c77de5 100755
--- a/sugar-network
+++ b/sugar-network
@@ -323,8 +323,8 @@ class Application(application.Application):
def porcelain_dump(value):
if type(value) is dict:
- if len(value) == 1 and 'guid' in value:
- porcelain_dump(value['guid'])
+ if len(value) == 1:
+ porcelain_dump(value.values()[0])
else:
for i in sorted(value.items()):
print '%-18s%s' % i