[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

[PATCH] Fix warning neon messages in gen_win.py

From: Chris Foote <cfoote_at_v21.me.uk>
Date: 2005-10-18 01:57:10 CEST

I noticed this when I upgraded my neon src to 0.25.3,
but forgot to create the .version file.

[Log]

Fix neon warning messages.

* build/generator/gen_win.py
  (_find_neon): Add a new line to the warning messages.

Index: build/generator/gen_win.py
===================================================================
--- build/generator/gen_win.py (revision 16779)
+++ build/generator/gen_win.py (working copy)
@@ -887,7 +887,7 @@
 
   def _find_neon(self):
     "Find the neon version"
- msg = 'WARNING: Unable to determine neon version'
+ msg = 'WARNING: Unable to determine neon version\n'
     try:
       fp = open(os.path.join(self.neon_path, '.version'))
       txt = fp.read()
@@ -902,7 +902,7 @@
         self.neon_ver = int('%d%02d%03d' % version)
         msg = 'Found neon version %d.%d.%d\n' % version
     except:
- msg = 'WARNING: Error while determining neon version'
+ msg = 'WARNING: Error while determining neon version\n'
     sys.stderr.write(msg)
     
   def _configure_apr_util(self):

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Tue Oct 18 01:58:49 2005

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.