Skip to content

Commit

Permalink
Builder: Unstable/Candidate builds use build report as release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed May 18, 2012
1 parent 1074eab commit 87cb613
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion distrib/builder/event.py
Expand Up @@ -310,7 +310,10 @@ def xml_log(self, logName):
return msg

def release_notes_uri(self, version):
return "http://dengine.net/dew/index.php?title=Doomsday_version_" + version
if self.release_type() == 'stable':
return "http://dengine.net/dew/index.php?title=Doomsday_version_" + version
else:
return "http://dengine.net/" + self.name()

def xml_description(self):
msg = '<build>'
Expand Down

0 comments on commit 87cb613

Please sign in to comment.