summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Sivak <msivak@redhat.com>2009-07-17 14:45:50 +0200
committerMartin Sivak <msivak@redhat.com>2009-07-17 14:45:50 +0200
commit2c20afb1faa446330ec62429145a791eb287a8e2 (patch)
tree32bdeda95cbe0ed575e709690f7954e7545d8e37
parent42ca0f13ebcf08ed732078442f95f82558f2eb39 (diff)
downloadfirstaidkit-2c20afb1faa446330ec62429145a791eb287a8e2.tar.gz
firstaidkit-2c20afb1faa446330ec62429145a791eb287a8e2.tar.xz
firstaidkit-2c20afb1faa446330ec62429145a791eb287a8e2.zip
Fix the reporting some more (inreplyto fixes)
-rw-r--r--pyfirstaidkit/reporting.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyfirstaidkit/reporting.py b/pyfirstaidkit/reporting.py
index c536ae2..9f85ed1 100644
--- a/pyfirstaidkit/reporting.py
+++ b/pyfirstaidkit/reporting.py
@@ -111,7 +111,7 @@ class Reports(object):
"""destination hold reference to another Reporting object"""
if destination is not None:
- return destination.put(message, origin, level, action, importance, reply, title)
+ return destination.put(message = message, origin = origin, level = level, action = action, importance = importance, reply = reply, title = title, inreplyto = inreplyto)
data = {"level": level, "origin": origin, "action": action,
"importance": importance, "message": message,
@@ -212,7 +212,7 @@ class Reports(object):
def issue(self, issue, origin, inreplyto = None, level = PLUGIN, importance = logging.INFO):
Logger.debug(origin.name+": issue changed state to "+str(issue))
- return self.put(issue, origin, level, ISSUE, inreplyto = None, importance = importance, inreplyto = inreplyto)
+ return self.put(issue, origin, level, ISSUE, importance = importance, inreplyto = inreplyto)
def info(self, message, origin, inreplyto = None, level = PLUGIN, importance = logging.INFO):
Logger.info(origin.name+": "+message)