Skip to content

Commit

Permalink
Bug 882124 - Both 'tags' and 'reason' should be optional when adding …
Browse files Browse the repository at this point in the history
…a log entry; r=catlee
  • Loading branch information
Ed Morley committed Jun 12, 2013
1 parent 090c76e commit 9d5bedb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion treestatus/app.py
Expand Up @@ -61,7 +61,7 @@ def setup(self, config):
self.memcache = memcache.Client(config['memcached.servers'].split(","))
self.memcachePrefix = config['memcached.prefix']

def log(self, tree, who, action, reason, tags):
def log(self, tree, who, action, reason="", tags=""):
l = model.DbLog()
l.tree = tree
l.who = who
Expand Down

0 comments on commit 9d5bedb

Please sign in to comment.