From 2ea35e07d4d51a8e959805049606beb36364bdc7 Mon Sep 17 00:00:00 2001 From: David Malcolm Date: Sat, 5 Dec 2009 08:04:47 -0500 Subject: Add docstring for Change class --- abrt-triage.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/abrt-triage.py b/abrt-triage.py index b88bd5f..70834d6 100755 --- a/abrt-triage.py +++ b/abrt-triage.py @@ -146,6 +146,17 @@ def what_provides_file(path): return pkg.name # this is the subpackage, not the srpm class Change(object): + ''' + Class representing a change to be made in Bugzilla. + + Somewhat analogous to a patch to be applied to a source tree. + + Currently only supports printing, but eventually ought to support being + applied to the bug. + + I want to capture a change as an entity so that you can always do human + review of the change, rather than automatically pushing blindly via XML-RPC + ''' def __init__(self, newsummary=None, newcomponent=None, -- cgit