Skip to content

Commit

Permalink
Merge branch 'bug2530' of git://github.com/clepple/buildbot into buil…
Browse files Browse the repository at this point in the history
…dbot-0.8.8
  • Loading branch information
djmitche committed Aug 10, 2013
2 parents 2799d21 + 3fd9995 commit 153d359
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion master/buildbot/status/web/feeds.py
Expand Up @@ -66,7 +66,7 @@ def render(self, request):
def rfc822_time(tstamp):
res = time.strftime("%%s, %d %%s %Y %H:%M:%S GMT",
tstamp)
res = res % (tstamp.tm_wday, tstamp.tm_mon)
res = res % (_abbr_day[tstamp.tm_wday], _abbr_mon[tstamp.tm_mon])
return res

class FeedResource(XmlResource):
Expand Down
2 changes: 2 additions & 0 deletions master/docs/relnotes/index.rst
Expand Up @@ -75,6 +75,8 @@ Features

* GNUAutoconf and other pre-defined factories now work correctly (:bb:bug:`2402`)

* The pubDate in RSS feeds is now rendered correctly (:bb:bug:`2530`)

Deprecations, Removals, and Non-Compatible Changes
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Expand Down

0 comments on commit 153d359

Please sign in to comment.