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