Skip to content

Commit

Permalink
fix "cannot concatenate 'str' and 'list' objects"
Browse files Browse the repository at this point in the history
  • Loading branch information
lepistone committed Jun 22, 2016
1 parent 7c388c3 commit d8fd840
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion marabunta/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def demo_operations(self):

def upgrade_addons_operation(self, addons_state):
install_command = self.options.install_command
install_args = self.options.install_args[:]
install_args = self.options.install_args[:] or []
install_args += [u'--workers=0', u'--stop-after-init']

installed = set(a.name for a in addons_state
Expand Down

0 comments on commit d8fd840

Please sign in to comment.