changeset 52:22a8bc9f4fd8

bugfix: filterpatch requires three arguments
author Daniel Beck <me@danieldbeck.com>
date Sat, 27 Jun 2009 15:49:12 -0400
parents c0e5e65165c1
children fc29a1d8901f
files crecord/crecord_core.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/crecord/crecord_core.py
+++ b/crecord/crecord_core.py
@@ -51,7 +51,7 @@
             chunks = filterpatch(opts, parsepatch(changes, fp), chunkselector)
         else:
             chgs = repo.status(match=match)[:3]
-            chunks = filterpatch(opts, parsepatch(chgs, fp))
+            chunks = filterpatch(opts, parsepatch(chgs, fp), chunkselector)
             
         del fp