Skip to content

Commit ede4f88

Browse files
committed
refactor: Install & test - CPython 3.7 (ubuntu), codecov (2).
1 parent bf188a7 commit ede4f88

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

zulipterminal/core.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -645,7 +645,7 @@ def narrow_to_user(
645645
) -> None:
646646
self._narrow_to(
647647
anchor=contextual_message_id,
648-
dm_with=", ".join(recipient_emails),
648+
pm_with=", ".join(recipient_emails),
649649
)
650650

651651
def narrow_to_all_messages(
@@ -654,7 +654,7 @@ def narrow_to_all_messages(
654654
self._narrow_to(anchor=contextual_message_id)
655655

656656
def narrow_to_all_dm(self, *, contextual_message_id: Optional[int] = None) -> None:
657-
self._narrow_to(anchor=contextual_message_id, dms=True)
657+
self._narrow_to(anchor=contextual_message_id, pms=True)
658658

659659
def narrow_to_all_starred(self) -> None:
660660
# NOTE: Should we allow maintaining anchor focus here?

0 commit comments

Comments
 (0)