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 0ac967d commit 29a2ad3Copy full SHA for 29a2ad3
systemvm/debian/opt/cloud/bin/cs/CsFile.py
@@ -174,6 +174,6 @@ def deleteLine(self, search):
174
self.new_config = list(temp_config)
175
176
def compare(self, o):
177
- result = (isinstance(o, self.__class__) and set(self.config) == set(o.config))
+ result = (isinstance(o, self.__class__) and self.config == o.config)
178
logging.debug("Comparison of CsFiles content is ==> %s" % result)
179
return result
0 commit comments