mercurial/commands.py
branchstable
changeset 12863 60d9692921ea
parent 12852 5dbff89cf107
child 12893 15ca4bfecfe3
--- a/mercurial/commands.py	Tue Oct 26 14:41:58 2010 +0300
+++ b/mercurial/commands.py	Wed Oct 20 15:32:35 2010 +0200
@@ -2497,7 +2497,8 @@
             return
         if df and not df(ctx.date()[0]):
             return
-        if opts['user'] and not [k for k in opts['user'] if k in ctx.user()]:
+        if opts['user'] and not [k for k in opts['user']
+                                 if k.lower() in ctx.user().lower()]:
             return
         if opts.get('keyword'):
             for k in [kw.lower() for kw in opts['keyword']]: