]> git.pld-linux.org Git - packages/buildbot.git/blob - buildbot-fixes.patch
- noarch, egg-info created on py2.4 too, fix duplicate files
[packages/buildbot.git] / buildbot-fixes.patch
1 diff -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)
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.077064 seconds and 3 git commands to generate.