Gitweb links:

...log 
http://git.netsurf-browser.org/netsurf-test.git/shortlog/0ed395f733752fb58a77c7cc20922dedba2944f2
...commit 
http://git.netsurf-browser.org/netsurf-test.git/commit/0ed395f733752fb58a77c7cc20922dedba2944f2
...tree 
http://git.netsurf-browser.org/netsurf-test.git/tree/0ed395f733752fb58a77c7cc20922dedba2944f2

The branch, master has been updated
       via  0ed395f733752fb58a77c7cc20922dedba2944f2 (commit)
      from  37e0afc97d64c0c73fa38c06dadf7de4659147be (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commitdiff 
http://git.netsurf-browser.org/netsurf-test.git/commit/?id=0ed395f733752fb58a77c7cc20922dedba2944f2
commit 0ed395f733752fb58a77c7cc20922dedba2944f2
Author: Vincent Sanders <[email protected]>
Commit: Vincent Sanders <[email protected]>

    open source taml files as utf-8 encoded text

diff --git a/cgi-bin/monkey-index.cgi b/cgi-bin/monkey-index.cgi
index 4ae41f6..3ccb313 100755
--- a/cgi-bin/monkey-index.cgi
+++ b/cgi-bin/monkey-index.cgi
@@ -48,7 +48,7 @@ def main():
 
     # load all test plan yaml files
     for fname in sorted(flist):
-        with open(os.path.join(testroot, fname), "r") as file_handle:
+        with open(os.path.join(testroot, fname), "rt", encoding='utf8') as 
file_handle:
             files[fname] = yaml.load(file_handle, Loader=yaml.CSafeLoader)
 
     if division + '/index.yaml' not in files:


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

Summary of changes:
 cgi-bin/monkey-index.cgi |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cgi-bin/monkey-index.cgi b/cgi-bin/monkey-index.cgi
index 4ae41f6..3ccb313 100755
--- a/cgi-bin/monkey-index.cgi
+++ b/cgi-bin/monkey-index.cgi
@@ -48,7 +48,7 @@ def main():
 
     # load all test plan yaml files
     for fname in sorted(flist):
-        with open(os.path.join(testroot, fname), "r") as file_handle:
+        with open(os.path.join(testroot, fname), "rt", encoding='utf8') as 
file_handle:
             files[fname] = yaml.load(file_handle, Loader=yaml.CSafeLoader)
 
     if division + '/index.yaml' not in files:


-- 
NetSurf test cases
_______________________________________________
netsurf-commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to