We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74c3a10 commit 55fead4Copy full SHA for 55fead4
lib/ClusterShell/Worker/Rsh.py
@@ -74,7 +74,7 @@ def _build_cmd(self):
74
75
def _on_nodeset_msgline(self, nodes, msg, sname):
76
"""Override _on_nodeset_msgline to parse magic return code"""
77
- match = re.search("^XXRETCODE: (\d+)$", msg.decode())
+ match = re.search(r"^XXRETCODE: (\d+)$", msg.decode())
78
if match:
79
self.rsh_rc = int(match.group(1))
80
else:
0 commit comments