fix bad tab/space due to paste
authorelij <elij@wundrd.net>
Tue, 13 Aug 2013 02:01:23 +0000 (19:01 -0700)
committerelij <elij@wundrd.net>
Tue, 13 Aug 2013 02:01:23 +0000 (19:01 -0700)
hugolib/site.go

index 08a0e54b422b057f7d3295335af95615dfb72970..6e2a933c3c1df7681fb624cb71523e4ba7df8bc3 100644 (file)
@@ -470,11 +470,11 @@ func (s *Site) RenderLists() error {
 
                if a := s.Tmpl.Lookup("rss.xml"); a != nil {
                        // XML Feed
-            if s.Config.UglyUrls {
-                    n.Url = Urlize(section + ".xml")
-            } else {
-                    n.Url = Urlize(section + "/" + "index.xml")
-            }
+                       if s.Config.UglyUrls {
+                               n.Url = Urlize(section + ".xml")
+                       } else {
+                               n.Url = Urlize(section + "/" + "index.xml")
+                       }
                        n.Permalink = template.HTML(string(n.Site.BaseUrl) + n.Url)
                        y := s.NewXMLBuffer()
                        s.Tmpl.ExecuteTemplate(y, "rss.xml", n)