We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68d644d commit 50d4ce1Copy full SHA for 50d4ce1
1 file changed
scan/commands/commandsequence.py
@@ -42,8 +42,8 @@ def append(self, *commands):
42
if isinstance(command, Command):
43
super(CommandSequence, self).append(command)
44
else:
45
- # Assume iterable tuple, list, set, .. and append its content
46
- self.append(list(command))
+ # Assume iterable tuple, list, set, .. and extend this list by its content
+ self.extend(list(command))
47
48
def genSCN(self):
49
""":return: Command in XML format suitable for scan server"""
0 commit comments