diff options
author | W. Trevor King <wking@drexel.edu> | 2009-08-07 11:52:39 -0400 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2009-08-07 11:52:39 -0400 |
commit | d5d2362b59a3b9851e10c0549e437fb3bce6222c (patch) | |
tree | b22c6e52cbae247083feaad11a75178a10196d38 /becommands/html.py | |
parent | e42729af0efc1a4c064e8875e728f9c3c1694a1d (diff) | |
download | bugseverywhere-d5d2362b59a3b9851e10c0549e437fb3bce6222c.tar.gz |
Adjusted help/doc strings in becommands/html.py
Diffstat (limited to 'becommands/html.py')
-rw-r--r-- | becommands/html.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/becommands/html.py b/becommands/html.py index 4835227..7640cf6 100644 --- a/becommands/html.py +++ b/becommands/html.py @@ -17,7 +17,7 @@ # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -"""Re-open a bug""" +"""Generate a static HTML dump of the current repository status""" from libbe import cmdutil, bugdir, bug #from html_data import * import os, re, time, string @@ -83,7 +83,8 @@ def get_parser(): return parser longhelp=""" -Generate a set of html pages. +Generate a set of html pages representing the current state of the bug +directory. """ def help(): @@ -573,4 +574,4 @@ class BEHTMLGen(): FD.write(self.detail_last%"../index_inactive.html") FD.close() -
\ No newline at end of file + |