mercurial/commands.py
changeset 15911 c654eac03452
parent 15906 aad565319fa3
child 15912 2bd54ffaa27e
--- a/mercurial/commands.py	Tue Jan 17 19:10:54 2012 -0500
+++ b/mercurial/commands.py	Tue Jan 17 19:10:58 2012 -0500
@@ -174,7 +174,7 @@
 
     m = scmutil.match(repo[None], pats, opts)
     rejected = cmdutil.add(ui, repo, m, opts.get('dry_run'),
-                           opts.get('subrepos'), prefix="")
+                           opts.get('subrepos'), prefix="", explicitonly=False)
     return rejected and 1 or 0
 
 @command('addremove',