show_changed to show data - way too many calls to keyreturn :)

This commit is contained in:
Seth Vidal 2013-07-03 23:00:09 +00:00
parent f6e3a85a0a
commit cfaddae895
2 changed files with 8 additions and 4 deletions

View file

@ -17,7 +17,7 @@ def main():
print >> sys.stderr, "No dict found"
sys.exit(1)
if name in obj:
print '%s: %s' % (name, obj.get(name, None))
print '%s:%s' % (name,obj.get(name, None))
else:
print >> sys.stderr, "No key %s found" % name
ret = 1