diff options
-rw-r--r-- | quarg/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quarg/main.py b/quarg/main.py index 089e43f..35518a4 100644 --- a/quarg/main.py +++ b/quarg/main.py @@ -22,7 +22,7 @@ cli.add_argument('-b', action='append', dest='buffer', help='match messages sent cli.add_argument('-B', action=actions.ParseBufferType, dest='buftype', help='match messages sent to buffers of this type') cli.add_argument('-n', action='append', dest='nick', help='match messages sent by this nickname') cli.add_argument('-N', action='append', dest='network', help='match messages sent to this network') -cli.add_argument('-u', action='append', dest='user', help='match messages received by this quassel user') +cli.add_argument('-u', action='append', dest='user', help='match messages sent to this quassel user') cli.add_argument('-t', action=actions.ParseMessageType, dest='msgtype', help='match messages of this message type') cli.add_argument('-f', action=actions.ParseMessageFlag, dest='msgflag', help='match messages with this flag') cli.add_argument('-p', action='append', dest='prefix', help='match nicks with this prefix') |