Fix the way the version number is gotten out of the RCS revision.
diff --git a/Demo/scripts/newslist.py b/Demo/scripts/newslist.py
index 2aa2b18..59ffde4 100755
--- a/Demo/scripts/newslist.py
+++ b/Demo/scripts/newslist.py
@@ -105,7 +105,8 @@
 from nntplib import NNTP
 from stat import *
 
-rcsrev = '$Revision$'[11:15]
+rcsrev = '$Revision$'
+rcsrev = string.join(filter(lambda s: '$' not in s, string.split(rcsrev)))
 desc = {}
 
 # Make (possibly) relative filenames into absolute ones