Skip to content

Commit

Permalink
Fix bug related to options.keys
Browse files Browse the repository at this point in the history
  • Loading branch information
larionvn committed Jun 6, 2017
1 parent ebf6a0d commit 3581622
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mathics/builtin/lists.py
Original file line number Diff line number Diff line change
Expand Up @@ -4688,7 +4688,7 @@ class ContainsOnly(Builtin):
}

def check_options(self, expr, evaluation, options):
for key in options.keys():
for key in options:
if key != 'System`SameTest':
if expr is None:
evaluation.message('ContainsOnly', 'nodef', Symbol(key))
Expand Down

0 comments on commit 3581622

Please sign in to comment.