diff options
Diffstat (limited to 'modules/bugs.py')
| -rw-r--r-- | modules/bugs.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/bugs.py b/modules/bugs.py index 359a06e..19dbb70 100644 --- a/modules/bugs.py +++ b/modules/bugs.py @@ -1,6 +1,7 @@ import os +from base.module import Module -class Bugs: +class Bugs(Module): """ Interface for doing useful things with Bugs. TODO: add support for arbitrary bug trackers! @@ -22,3 +23,4 @@ class Bugs: """ os.system('firefox "https://bugzilla.redhat.com/buglist.cgi?query_format=specific&order=bugs.bug_id&bug_status=__open__&product=&content=%s"' % text) +__all__ = ['Bugs']
\ No newline at end of file |
