diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2019-11-18 12:03:22 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-18 12:03:22 (GMT) |
commit | 5383956583bb758f3828513bcdd011871f24a0e8 (patch) | |
tree | 70352010df799bc12939fef58a2c7393ffd41714 /Doc/howto | |
parent | 59c80889ff3f74230a613732aacf93d4de1e0e04 (diff) | |
download | cpython-5383956583bb758f3828513bcdd011871f24a0e8.zip cpython-5383956583bb758f3828513bcdd011871f24a0e8.tar.gz cpython-5383956583bb758f3828513bcdd011871f24a0e8.tar.bz2 |
bpo-38830: Correct slot signature in Qt example. (GH-17220)
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/logging-cookbook.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/logging-cookbook.rst b/Doc/howto/logging-cookbook.rst index 9f52780..17f4ff6 100644 --- a/Doc/howto/logging-cookbook.rst +++ b/Doc/howto/logging-cookbook.rst @@ -2949,7 +2949,7 @@ refer to the comments in the code snippet for more detailed information. # The functions below update the UI and run in the main thread because # that's where the slots are set up - @Slot(str) + @Slot(str, logging.LogRecord) def update_status(self, status, record): color = self.COLORS.get(record.levelno, 'black') s = '<pre><font color="%s">%s</font></pre>' % (color, status) |