# HG changeset patch # User RĂ©mi Cardona # Date 1414597176 -3600 # Node ID c5bcdece77fbf57585cc55503b711f6229bbfc2a # Parent 7d0acf9cb92a6f92c293e3d5affd475bc3767193 [hooks] Fix precommit event logging message diff -r 7d0acf9cb92a -r c5bcdece77fb hooks/syncschema.py --- a/hooks/syncschema.py Thu Oct 23 13:51:13 2014 +0200 +++ b/hooks/syncschema.py Wed Oct 29 16:39:36 2014 +0100 @@ -449,7 +449,7 @@ cnx.system_sql(str('ALTER TABLE %s ADD %s %s' % (table, column, attrtype)), rollback_on_failure=False) - self.info('added column %s to table %s', table, column) + self.info('added column %s to table %s', column, table) except Exception as ex: # the column probably already exists. this occurs when # the entity's type has just been added or if the column