diff options
| author | Michael E Brown <michael_e_brown@dell.com> | 2007-10-27 15:47:30 -0500 |
|---|---|---|
| committer | Michael E Brown <michael_e_brown@dell.com> | 2007-10-27 15:47:30 -0500 |
| commit | 297fccef1b608322ed41a8d6e78aee8dab800a74 (patch) | |
| tree | 454f85bb4d2b34b7dedaa34dd28e8f5cf313ab69 /src | |
| parent | 08395e9e713495a71bc5ac50f0950ece9c442144 (diff) | |
| download | mock-297fccef1b608322ed41a8d6e78aee8dab800a74.tar.gz mock-297fccef1b608322ed41a8d6e78aee8dab800a74.tar.xz mock-297fccef1b608322ed41a8d6e78aee8dab800a74.zip | |
fix typo in error path.
Diffstat (limited to 'src')
| -rw-r--r-- | src/py-libs/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/py-libs/util.py b/src/py-libs/util.py index e4fb532..b3f8706 100644 --- a/src/py-libs/util.py +++ b/src/py-libs/util.py @@ -27,7 +27,7 @@ log = logging.getLogger("mock.util") # classes class commandTimeoutExpired(mock.exception.Error): def __init__(self, msg): - Error.__init__(self, msg) + mock.exception.Error.__init__(self, msg) self.msg = msg self.resultcode = 10 |
