Skip to content

Commit

Permalink
site_config: use a string comparison instead of identification
Browse files Browse the repository at this point in the history
  • Loading branch information
mhasself committed Sep 15, 2020
1 parent fb638ba commit ae9c217
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ocs/site_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ def to_list(self):
"""
arg_list = []
for k, v in self.arg_dict.items():
if k is not '__positional__':
if k != '__positional__':
arg_list.append(k)
arg_list.extend(v)

Expand Down

0 comments on commit ae9c217

Please sign in to comment.