roswtf: fix for /time rule to include /clock

This commit is contained in:
Ken Conley 2009-10-28 00:08:33 +00:00
parent 4dc7c2a86d
commit fe90bbf26b
1 changed files with 1 additions and 1 deletions

View File

@ -141,7 +141,7 @@ def unconnected_subscriptions(ctx):
ret += ''.join([" * %s\n"%t for t in l])
else:
for sub, l in ctx.unconnected_subscriptions.iteritems():
l = [t for t in l if t != '/time']
l = [t for t in l if t not in ['/time', '/clock']]
if l:
ret += ' * %s:\n'%sub
ret += ''.join([" * %s\n"%t for t in l])