summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Gryniewicz <dang@fprintf.net>2007-09-19 11:07:52 -0400
committerDaniel Gryniewicz <dang@fprintf.net>2007-09-19 11:07:52 -0400
commitdadd0b1537840b023e9616b066af2a75e74bf057 (patch)
tree3e8906d91cf4ed90190ad0e642e437ba2866662f
parentmap gnome-control-center to control-center (diff)
downloadgentoo-bumpchecker-dadd0b1537840b023e9616b066af2a75e74bf057.tar.gz
gentoo-bumpchecker-dadd0b1537840b023e9616b066af2a75e74bf057.tar.bz2
gentoo-bumpchecker-dadd0b1537840b023e9616b066af2a75e74bf057.zip
Make username come from dang rather than be hard coded to dang
-rw-r--r--modules/gnome_output.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gnome_output.py b/modules/gnome_output.py
index 895340b..e876fb3 100644
--- a/modules/gnome_output.py
+++ b/modules/gnome_output.py
@@ -1,7 +1,7 @@
# Copyright John N. Laliberte <allanonjl@gentoo.org>
# LICENSE - GPL2
-import package_module,time,clioptions_module,gnome_module
+import package_module,time,clioptions_module,gnome_module,os
class Output:
@@ -59,7 +59,7 @@ class Output:
# header
lines.append("<html>")
lines.append("<h2>Gnome " + clioptions_module.Options().get_arguments().release_number + " Progress</h2>")
- lines.append("contact dang@gentoo.org if anything is not correct<br>")
+ lines.append("contact " + os.environ["USER"] + "@gentoo.org if anything is not correct<br>")
lines.append("Generated date: " + current_time + "<br>")
lines.append("Directories checked ( recursively ): <br>")
for dir in gnome_module.GNOME().release_directories: