diff --git a/negotiation.py b/negotiation.py index 3dcfecf..307daec 100755 --- a/negotiation.py +++ b/negotiation.py @@ -69,7 +69,7 @@ def negotiation_create(): # @TODO Signal to the user that the negotiation already exists and they # are being sent to it instead. return flask.redirect('/negotiations/{}'.format(n)) - nego = Negotiation(name = n, owner = user.id) + nego = Negotiation(name = n, owner = user.id, taker_sway = 1, market_sway = 6) pony.orm.commit() return flask.redirect('/negotiations/{}'.format(n))