diff options
author | Stef Walter <stef@memberwebs.com> | 2006-02-23 23:43:05 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2006-02-23 23:43:05 +0000 |
commit | 9da991ea5f6d5b02ee22c1d87f95d989efde4b30 (patch) | |
tree | f4717874a03c160c6acec48db43040f91e82e9f9 | |
parent | 9ffd30e42f8977409b91d0667a09c788aaf3a1ea (diff) |
Support categories properly.
-rwxr-xr-x | tools/rrdui-cgi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/rrdui-cgi.py b/tools/rrdui-cgi.py index 75c9ce9..fc58608 100755 --- a/tools/rrdui-cgi.py +++ b/tools/rrdui-cgi.py @@ -40,7 +40,7 @@ class GraphDef: if cfg.has_option("general", "title"): self.title = cfg.get("general", "title") if cfg.has_option("general", "category"): - self.title = cfg.get("general", "category") + self.category = cfg.get("general", "category") # Loading graph stuff if cfg.has_option("graph", "width"): |