diff --git a/distrib/autobuild.py b/distrib/autobuild.py index 27579a2189..08b952b867 100755 --- a/distrib/autobuild.py +++ b/distrib/autobuild.py @@ -191,8 +191,6 @@ def build_source_package(): if fn[:9] == 'doomsday-' and fn[-7:] == '.tar.gz': remote_copy(fn, ev.file_path(fn)) - #remote_copy('deng_buildlog.txt', ev.file_path('doomsday-out-%s.txt' % sys_id())) - def rebuild_apt_repository(): """Rebuilds the Apt repository by running apt-ftparchive.""" diff --git a/distrib/builder/event.py b/distrib/builder/event.py index 0fd8681118..a3911819c2 100644 --- a/distrib/builder/event.py +++ b/distrib/builder/event.py @@ -334,6 +334,7 @@ def html_description(self, encoded=True): return msg def release_type(self): + """Returns the release type as a lower-case string.""" fn = self.file_path('releaseType.txt') if os.path.exists(fn): return file(fn).read().lower().strip()