You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Daniel Rall <dl...@collab.net> on 2006/06/16 08:08:10 UTC

Re: svn commit: r20144 - trunk/contrib/hook-scripts

On Thu, 15 Jun 2006, cmpilato@tigris.org wrote:
...
> --- trunk/contrib/hook-scripts/svn2rss.py	(original)
> +++ trunk/contrib/hook-scripts/svn2rss.py	Thu Jun 15 23:24:05 2006
> @@ -21,7 +21,7 @@
>  # Python 2.3 is required by PyRSS2Gen
>  py_version  = sys.version_info
>  if sys.version_info[0:2] < (2,3):
> -    sys.stderr.write("Error: Python 2.3 or higher required")
> +    sys.stderr.write("Error: Python 2.3 or higher required.")
>      sys.exit(1)

This stderr output is missing a newline at the end of it.  The 'print
>> sys.stderr, msg' idiom is used elsewhere in this script to add a
newline.