From 3a8d4a52dd9dd559c2c27eb509578dc7d6a4a4ba Mon Sep 17 00:00:00 2001
From: Hector Oron <hector.oron@gmail.com>
Date: Wed, 23 Mar 2011 15:38:20 +0000
Subject: [PATCH] Workaround an edit failure, there is not title_with_separators function available on 1.7 moinmoin

Signed-off-by: Hector Oron <hector.oron@gmail.com>
---
 theme/debwiki.py |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/theme/debwiki.py b/theme/debwiki.py
index c8094fc..9ec51a5 100644
--- a/theme/debwiki.py
+++ b/theme/debwiki.py
@@ -137,7 +137,8 @@ class Theme(ThemeBase):
             # Header
             u'<div id="header">',
             u'<h1 id="locationline">',
-            self.title_with_separators(d),
+            #self.title_with_separators(d),
+            self.title(d),
             u'</h1>',
             self.msg(d),
             u'</div>',
-- 
1.5.6.5

