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