From 2f14d2ae1e9c255abecf6e74e0125778922920ac 2013-10-10 07:59:43 From: Pablo de Oliveira Date: 2013-10-10 07:59:43 Subject: [PATCH] PayloadManager: Fix docstring. --- diff --git a/IPython/core/payload.py b/IPython/core/payload.py index c95fcdb..900d7ef 100644 --- a/IPython/core/payload.py +++ b/IPython/core/payload.py @@ -32,8 +32,8 @@ class PayloadManager(Configurable): def write_payload(self, data, single=True): """Include or update the specified `data` payload in the PayloadManager. - If a previous payload with the same source than `data` exists - and `single` is True, it will be overwritten with the new one. + If a previous payload with the same source exists and `single` is True, + it will be overwritten with the new one. """ if not isinstance(data, dict):