2

试图用fabric设置mysql用户权限。

run("mysql -u %s -p%s -e 'grant all on %s.* to '%s'@'localhost' identified by 'PASSWORD'" % (user, dbpasswd, account))

错误

TypeError: not enough arguments for format string

任何的想法 ?非常感谢 !

run('mysql -u %s -p%s -e "grant all on %s.* to '%s\'@\'localhost' identified by 'PASSWORD'"' % (user, dbpasswd, account, account))

SyntaxError: unexpected character after line continuation character
4

1 回答 1

2

将您的元组更改为(user, dbpasswd, account, user),您应该会很好。发生此错误是因为您有 4 个替换标记 (%s) 但元组中只有 3 个项目。

于 2012-07-09T09:57:40.423 回答