[SCM] build.samba.org - branch master updated

Jelmer Vernooij jelmer at samba.org
Tue Nov 16 17:21:15 MST 2010


The branch, master has been updated
       via  3250896 Unicode encoding hostname if necessary.
      from  6d5e8cb Remove more unicode decoding.

http://gitweb.samba.org/?p=build-farm.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 3250896b368cd839b1fa65fffdd0c1f168016cf3
Author: Jelmer Vernooij <jelmer at samba.org>
Date:   Wed Nov 17 01:20:45 2010 +0100

    Unicode encoding hostname if necessary.

-----------------------------------------------------------------------

Summary of changes:
 buildfarm/sqldb.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/buildfarm/sqldb.py b/buildfarm/sqldb.py
index cac733e..b452e42 100644
--- a/buildfarm/sqldb.py
+++ b/buildfarm/sqldb.py
@@ -129,7 +129,7 @@ class StormHostDatabase(HostDatabase):
         return self.store.find(StormHost).order_by(StormHost.name)
 
     def host(self, name):
-        ret = self.store.find(StormHost, StormHost.name==name).one()
+        ret = self.store.find(StormHost, StormHost.name==unicode(name)).one()
         if ret is None:
             raise NoSuchHost(name)
         return ret


-- 
build.samba.org


More information about the samba-cvs mailing list