我必须创建一个需要调用另一个django命令的django命令,所以我不得不使用call_command,这看起来很酷很简单:
call_command('command_to_call', new_text='arghslkjt')
命令command_to_call应该将new_text内容存储到数据库中。但是,它返回
.......
call_command('command_to_call', new_text='arghslkjt')
^
SyntaxError: invalid syntax
make_option('-n','--new_text',
type='string',
dest='new_text',
help='specify the new text title'),
有什么想法吗?
提前致谢