| Index: gyptest.py
|
| diff --git a/gyptest.py b/gyptest.py
|
| index 8f3ee0ffb04f299a465701b26d37d067b5f6ff8b..93aa2ee096aeb2d15700b38557c48156ee306769 100755
|
| --- a/gyptest.py
|
| +++ b/gyptest.py
|
| @@ -13,7 +13,7 @@ import optparse
|
| import subprocess
|
| import sys
|
|
|
| -class CommandRunner:
|
| +class CommandRunner(object):
|
| """
|
| Executor class for commands, including "commands" implemented by
|
| Python functions.
|
| @@ -117,7 +117,7 @@ class CommandRunner:
|
| return self.execute(command, stdout, stderr)
|
|
|
|
|
| -class Unbuffered:
|
| +class Unbuffered(object):
|
| def __init__(self, fp):
|
| self.fp = fp
|
| def write(self, arg):
|
|
|