diff options
Diffstat (limited to 'framework/core.py')
-rw-r--r-- | framework/core.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/framework/core.py b/framework/core.py index 03f8b8aeb..8d6482e0e 100644 --- a/framework/core.py +++ b/framework/core.py @@ -269,11 +269,10 @@ class Environment: command, stdout=subprocess.PIPE, stderr=subprocess.PIPE) (stdout,stderr) = p.communicate(); return stderr+stdout - print >>self.file, "glxinfo:", encode(stderr+stdout) def collectData(self): - print >>self.file, "glxinfo:", encode(self.run('glxinfo')) - print >>self.file, "lspci:", encode(self.run('lspci')) + print >>self.file, "glxinfo:", '@@@' + encode(self.run('glxinfo')) + print >>self.file, "lspci:", '@@@' + encode(self.run('lspci')) class Test: |