Skip to content
This repository was archived by the owner on Jun 27, 2018. It is now read-only.

Commit ad56f39

Browse files
author
Joshua Reich
committed
fixed inconsistency in generating crossed rule action list
1 parent d416ba7 commit ad56f39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyretic/core/classifier.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ def _sequence_actions(a1, as2):
213213
if a1 == Controller or isinstance(a1, CountBucket):
214214
return {a1}
215215
elif a1 == identity:
216-
return as2
216+
return copy.copy(as2)
217217
elif isinstance(a1, modify):
218218
new_actions = set()
219219
for a2 in as2:

0 commit comments

Comments
 (0)