]> git.pld-linux.org Git - packages/buildbot.git/blame - buildbot-fixes.patch
- noarch, egg-info created on py2.4 too, fix duplicate files
[packages/buildbot.git] / buildbot-fixes.patch
CommitLineData
46eca739
AM
1diff -urN buildbot-0.7.9.org/buildbot/scheduler.py buildbot-0.7.9/buildbot/scheduler.py
2--- buildbot-0.7.9.org/buildbot/scheduler.py 2008-09-16 18:02:31.000000000 +0200
3+++ buildbot-0.7.9/buildbot/scheduler.py 2009-01-30 19:55:42.416536719 +0100
4@@ -172,7 +172,7 @@
5 (self, time.strftime("%H:%M:%S", time.localtime(when))))
6 now = util.now()
7 if when < now:
8- when = now + 1
9+ when = now
10 if self.timer:
11 self.timer.cancel()
12 self.timer = reactor.callLater(when - now, self.fireTimer)
68713ff1
AM
13--- buildbot-0.7.9/./buildbot/status/web/base.py~ 2008-09-16 18:02:30.000000000 +0200
14+++ buildbot-0.7.9/./buildbot/status/web/base.py 2009-02-01 19:33:10.779117102 +0100
15@@ -349,7 +349,7 @@
16 except KeyError:
17 rev = "??"
18 rev = str(rev)
19- if len(rev) > 20:
20+ if len(rev) > 40:
21 rev = "version is too-long"
22 root = self.path_to_root(req)
23 css_class = css_classes.get(results, "")
This page took 0.164266 seconds and 4 git commands to generate.