# HG changeset patch # User Bernhard Herzog # Date 1231865908 0 # Node ID 15de52d55432a985b7dad5c046db2797e9d4e558 # Parent 065d20fb4691849d9972edbdc5f39dfb7a1a0607 Show the rules revision in the reports generated by bin/reportstatus.py diff -r 065d20fb4691 -r 15de52d55432 bin/reportstatus.py --- a/bin/reportstatus.py Tue Jan 13 16:58:02 2009 +0000 +++ b/bin/reportstatus.py Tue Jan 13 16:58:28 2009 +0000 @@ -1,5 +1,5 @@ #! /usr/bin/python2.4 -# Copyright (C) 2007, 2008 by Intevation GmbH +# Copyright (C) 2007, 2008, 2009 by Intevation GmbH # Authors: # Bernhard Herzog # @@ -37,7 +37,8 @@ raise ValueError("Unknown sort field %r" % sort_on) for item in sorted: - print "%s %s: %s" % (item.name, item.revno, item.status.desc) + print "%s %s-%s: %s" % (item.name, item.revno, item.rulesrev, + item.status.desc) print " Start:", item.status.start print " Stop:", item.status.stop print