Skip to content

Commit

Permalink
Builder: Removed an extra slash from RSS build event links
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Jul 19, 2016
1 parent e006d8f commit d627114
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion distrib/autobuild.py
Expand Up @@ -337,7 +337,7 @@ def update_feed():
allEvents.append((timestamp, ev))
print >> out, '<item>'
print >> out, '<title>Build %i</title>' % ev.number()
print >> out, '<link>%s/%s/</link>' % ("http://files.dengine.net/builds/", ev.name)
print >> out, '<link>%s/%s/</link>' % ("http://files.dengine.net/builds", ev.name)
print >> out, '<author>skyjake@users.sourceforge.net (skyjake)</author>'
print >> out, '<pubDate>%s</pubDate>' % time.strftime(builder.config.RFC_TIME, time.gmtime(timestamp))
print >> out, '<atom:summary>%s</atom:summary>' % ev.text_summary()
Expand Down

0 comments on commit d627114

Please sign in to comment.