diff options
author | Don Bright <hugh.m.bright@gmail.com> | 2013-02-20 01:43:25 (GMT) |
---|---|---|
committer | Don Bright <hugh.m.bright@gmail.com> | 2013-02-20 01:43:25 (GMT) |
commit | c304adabe26887dc35599a44384ab5ada24a88ca (patch) | |
tree | 51b1f65f58e6da5d30436209fd851dff2a16d896 /tests/test_pretty_print.py | |
parent | 85d3f3c7c9b165da519d9b4377a1fbd3281f6b14 (diff) |
update documentation. tweak scripts
Diffstat (limited to 'tests/test_pretty_print.py')
-rwxr-xr-x | tests/test_pretty_print.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/test_pretty_print.py b/tests/test_pretty_print.py index 8458fdb..a4b5e70 100755 --- a/tests/test_pretty_print.py +++ b/tests/test_pretty_print.py @@ -86,8 +86,8 @@ def read_sysinfo(filename): if not data: sinfo = platform.sys.platform sinfo += '\nsystem cannot create offscreen GL framebuffer object' - sinfo += '\nsystem cannot create images' - sysid = platform.sys.platform+'_no_images' + sinfo += '\nsystem cannot create GL based images' + sysid = platform.sys.platform+'_no_GL_renderer' return sinfo, sysid machine = ezsearch('Machine:(.*?)\n',data) @@ -118,6 +118,7 @@ def read_sysinfo(filename): for c in hexhash: hash += chr(ord(c)+97-48) sysid = osplain + '_' + machine + '_' + renderer + '_' + hash + sysid = sysid.replace('(','_').replace(')','_') sysid = sysid.lower() return data, sysid |