Skip to content
This repository has been archived by the owner on Apr 21, 2023. It is now read-only.

aslist.py: Assign param #498

Merged
merged 1 commit into from
Jan 29, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bcml/mergers/aslist.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def diff_against(self, other) -> None:
if not other.posts[post_name][param_name] == param_val:
if not post_name in new_posts:
new_posts[post_name] = {}
new_posts[post_name][param_name] == param_val
new_posts[post_name][param_name] = param_val
self.posts = new_posts

def update_from(self, other) -> None:
Expand Down