c_client.py: make the man page output deterministic
authorRan Benita <ran234@gmail.com>
Sun, 23 Feb 2014 20:55:19 +0000 (22:55 +0200)
committerDaniel Martin <consume.noise@gmail.com>
Mon, 28 Jul 2014 18:29:59 +0000 (20:29 +0200)
commitcae2e398563841c5b814596fd1f1c64354dcac71
treec87bf34baf475e623726103df5ca3d2a3728aee8
parentbfbf83b1d8113ac398b57c2738706792946d1c03
c_client.py: make the man page output deterministic

Some parts of the man pages (SEE ALSO and ERRORS) are generated by
iterating a Python dict. But the iteration order in a dict is random,
so each build the output is ordered differently. Avoid that by iterating
in sorted order.

Signed-off-by: Ran Benita <ran234@gmail.com>
Reviewed-by: Daniel Martin <consume.noise@gmail.com>
src/c_client.py