taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit f91a9b02f009a8c937a8b028b0d56abbe8e04a96
parent 3e8241cadf81c2c9c91d480211f338d33ba2ec0e
Author: Christian Grothoff <christian@grothoff.org>
Date:   Tue, 25 Feb 2020 12:26:10 +0100

merge bugfix from exchange's render.py

Diffstat:
Mbuildbot/render_auditor_reports.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/buildbot/render_auditor_reports.py b/buildbot/render_auditor_reports.py @@ -26,7 +26,7 @@ class StdinLoader(BaseLoader): def __init__ (self): self.path = '-' def get_source(self, environment, template): - source = sys.stdin.read().decode('utf-8') + source = sys.stdin.read() return source, self.path, lambda: false