# HG changeset patch # User Pascal Volk # Date 1250965264 0 # Node ID 9dca3e898ddb0029319c3a7f20c0e7532e3b87b7 # Parent 4ffb50de00d52f95db2962d387a6e3572954d97d avoid error message if used with version 0.5.2 diff -r 4ffb50de00d5 -r 9dca3e898ddb update_config_0.4.x-0.5.py --- a/update_config_0.4.x-0.5.py Fri Aug 21 18:41:33 2009 +0000 +++ b/update_config_0.4.x-0.5.py Sat Aug 22 18:21:04 2009 +0000 @@ -31,6 +31,9 @@ upd_050(cp) elif VERSION == '0.5.1': upd_051(cp) + elif VERSION == '0.5.2': + os.sys.stdout.write('info: nothing to do for version %s\n' % VERSION) + os.sys.exit(0) else: os.sys.stderr.write( 'error: the version %s is not supported by this script\n' % VERSION)