diff options
-rw-r--r-- | .be/bea86499-824e-4e77-b085-2d581fa9ccab/bugs/01e7151c-6113-4c8f-9fc5-4d594431bd2b/values | 17 | ||||
-rw-r--r-- | libbe/command/html.py | 2 |
2 files changed, 18 insertions, 1 deletions
diff --git a/.be/bea86499-824e-4e77-b085-2d581fa9ccab/bugs/01e7151c-6113-4c8f-9fc5-4d594431bd2b/values b/.be/bea86499-824e-4e77-b085-2d581fa9ccab/bugs/01e7151c-6113-4c8f-9fc5-4d594431bd2b/values new file mode 100644 index 0000000..673423e --- /dev/null +++ b/.be/bea86499-824e-4e77-b085-2d581fa9ccab/bugs/01e7151c-6113-4c8f-9fc5-4d594431bd2b/values @@ -0,0 +1,17 @@ +creator: Gianluca Montecchi <gian@grys.it> + + +reporter: Gianluca Montecchi <gian@grys.it> + + +severity: minor + + +status: open + + +summary: Short the files name used by the be html command + + +time: Tue, 09 Feb 2010 23:03:33 +0000 + diff --git a/libbe/command/html.py b/libbe/command/html.py index fbbdf97..b769179 100644 --- a/libbe/command/html.py +++ b/libbe/command/html.py @@ -368,7 +368,7 @@ class HTMLGen (object): def _escape(self, string): if string == None: return '' - return xml.sax.saxutils.escape(char) + return xml.sax.saxutils.escape(string) def _load_user_templates(self): for filename,attr in [('style.css','css_file'), |