We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f07147 commit bacde76Copy full SHA for bacde76
1 file changed
nodely/error.py
@@ -2,12 +2,18 @@
2
3
from subprocess import CalledProcessError
4
5
+import zetup
6
+
7
+import nodely
8
9
__all__ = ('NodeCommandError', )
10
11
-class NodeCommandError(CalledProcessError):
12
+class NodeCommandError(CalledProcessError, zetup.object):
13
"""A Node.js command returned non-zero exit code"""
14
15
+ __package__ = nodely
16
17
def __init__(self, returncode, cmd, cwd):
18
super(NodeCommandError, self).__init__(
19
returncode=returncode, cmd=cmd)
0 commit comments