From 530b6b598dd93d3ee39b05392738d5922ca7e7c9 Mon Sep 17 00:00:00 2001 From: Chad Whitacre Date: Thu, 3 Apr 2014 11:03:43 -0400 Subject: [PATCH] Fix regression in payday with #2226 chain The wireup.{billing,nanswers} functions also need an env arg now. Discovered in #2236. --- gittip/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gittip/cli.py b/gittip/cli.py index 6d1badd077..040857de0e 100644 --- a/gittip/cli.py +++ b/gittip/cli.py @@ -17,8 +17,8 @@ def payday(): db = wireup.db(env) db.run("SET statement_timeout = 0") - wireup.billing() - wireup.nanswers() + wireup.billing(env) + wireup.nanswers(env) # Lazily import the billing module.