~smoser/curtin/yakkety.lp1666986

« back to all changes in this revision

Viewing changes to tests/vmtests/helpers.py

  • Committer: Scott Moser
  • Date: 2016-02-12 21:54:46 UTC
  • mto: (58.1.1 pkg)
  • mto: This revision was merged to the branch mainline in revision 39.
  • Revision ID: smoser@ubuntu.com-20160212215446-0h8ka36oznelsjz1
Tags: upstream-0.1.0~bzr351
ImportĀ upstreamĀ versionĀ 0.1.0~bzr351

Show diffs side-by-side

added added

removed removed

Lines of Context:
89
89
            else:
90
90
                self.timeout = -1
91
91
 
92
 
            super(TimeoutExpired, self).__init__(returncode, **kwargs)
 
92
            # do not use super here as it confuses pylint
 
93
            # https://github.com/PyCQA/pylint/issues/773
 
94
            subprocess.CalledProcessError.__init__(self, returncode, **kwargs)
93
95
 
94
96
 
95
97
def check_call(cmd, signal=signal.SIGTERM, **kwargs):