Skip to content
Snippets Groups Projects
Commit c0e6d606 authored by David Parks's avatar David Parks
Browse files

STORM-1210 : Fix python merge glitch so to pass Release build (again)

parent a25f8987
No related branches found
No related tags found
No related merge requests found
...@@ -26,8 +26,6 @@ ...@@ -26,8 +26,6 @@
$/LicenseInfo$ $/LicenseInfo$
""" """
from sets import Set, ImmutableSet
from compatibility import Incompatible, Older, Newer, Same from compatibility import Incompatible, Older, Newer, Same
from tokenstream import TokenStream from tokenstream import TokenStream
...@@ -44,8 +42,8 @@ def addMessage(self, m): ...@@ -44,8 +42,8 @@ def addMessage(self, m):
def compatibleWithBase(self, base): def compatibleWithBase(self, base):
messagenames = ( messagenames = (
ImmutableSet(self.messages.keys()) frozenset(self.messages.keys())
| ImmutableSet(base.messages.keys()) | frozenset(base.messages.keys())
) )
compatibility = Same() compatibility = Same()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment