# HG changeset patch # User Thomas Arendsen Hein # Date 1149097261 -7200 # Node ID 0c0bfea3f72affb03bb3ad00231e28dfb3cec2c5 # Parent 61909dfb316da52e0069e8cf92cfc81cffc21523 Pass filename to decoder for 'hg archive' (fixes issue267) Despite writing to a file descriptor, the check in the [decode] section needs a filename. localrepo.wwrite() still writes to the file descriptor. diff -r 61909dfb316d -r 0c0bfea3f72a mercurial/archival.py --- a/mercurial/archival.py Mon May 29 16:46:31 2006 +0800 +++ b/mercurial/archival.py Wed May 31 19:41:01 2006 +0200 @@ -156,7 +156,7 @@ if matchfn and not matchfn(name): return if decode: fp = cStringIO.StringIO() - repo.wwrite(None, data, fp) + repo.wwrite(name, data, fp) data = fp.getvalue() archiver.addfile(name, mode, data)