From 3d5f92655231f9ff46d0eab7f04fbd4be702ed8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolfo=20Garc=C3=ADa=20Pe=C3=B1as=20=28kix=29?= Date: Sun, 11 Oct 2020 23:57:17 +0200 Subject: [PATCH] Changed the doxygen in change_message_uid This patch changes the doxygen and adds the ruid argument. --- offlineimap/folder/UIDMaps.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/offlineimap/folder/UIDMaps.py b/offlineimap/folder/UIDMaps.py index 9014805..fd495d4 100644 --- a/offlineimap/folder/UIDMaps.py +++ b/offlineimap/folder/UIDMaps.py @@ -316,9 +316,14 @@ class MappedIMAPFolder(IMAPFolder): def change_message_uid(self, ruid, new_ruid): """Change the message from existing ruid to new_ruid - :param new_uid: The old remote UID will be changed to a new + The old remote UID will be changed to a new UID. The UIDMaps case handles this efficiently by simply - changing the mappings file.""" + changing the mappings file. + + Args: + ruid: Remote UID + new_ruid: New Remote UID + """ if ruid not in self.r2l: raise OfflineImapError("Cannot change unknown Maildir UID %s" %