From a065477bbdcecc5d314cb76f628e4dc1eefe6109 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Sat, 3 Jan 2004 15:59:51 +0000 Subject: [PATCH] Changed get to just plain note, as per RFE #869628. --- plugins/Note.py | 2 +- test/test_Note.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/Note.py b/plugins/Note.py index 5197314d0..92b15f15d 100644 --- a/plugins/Note.py +++ b/plugins/Note.py @@ -188,7 +188,7 @@ class Note(callbacks.Privmsg): irc.error(msg, 'That note wasn\'t sent by you.') - def get(self, irc, msg, args): + def note(self, irc, msg, args): """ Retrieves a single note by its unique note id. diff --git a/test/test_Note.py b/test/test_Note.py index 3e188c17e..c6e625124 100644 --- a/test/test_Note.py +++ b/test/test_Note.py @@ -55,7 +55,7 @@ if sqlite is not None: def testNote(self): # self.assertNotError('note 1') - self.assertError('note get blah') + self.assertError('note blah') def testNotes(self): self.assertNotError('note list')