diff -r a4b50efb97f6 -r 106b2a05dc88 common/migration.py --- a/common/migration.py Mon Jul 27 09:52:21 2009 +0200 +++ b/common/migration.py Mon Jul 27 10:06:13 2009 +0200 @@ -69,7 +69,7 @@ ability to show the script's content """ while True: - confirm = raw_input('** execute %r (Y/n/s[how]) ?' % scriptpath) + confirm = raw_input('Execute %r (Y/n/s[how]) ?' % scriptpath) confirm = confirm.strip().lower() if confirm in ('n', 'no'): return False @@ -172,7 +172,7 @@ def interact(self, args, kwargs, meth): """execute the given method according to user's confirmation""" - msg = 'execute command: %s(%s) ?' % ( + msg = 'Execute command: %s(%s) ?' % ( meth.__name__[4:], ', '.join([repr(arg) for arg in args] + ['%s=%r' % (n,v) for n,v in kwargs.items()]))