mercurial/patch.py
changeset 4124 ef4c1cd6f4e4
parent 4107 226df1808f16
child 4125 ef7c39ae5d4c
--- a/mercurial/patch.py
+++ b/mercurial/patch.py
@@ -610,7 +610,7 @@ def export(repo, revs, template='hg-%h.p
         if not fp:
             fp = cmdutil.make_file(repo, template, node, total=total,
                                    seqno=seqno, revwidth=revwidth)
-        if fp not in (sys.stdout, repo.ui):
+        if hasattr(fp, 'name'):
             repo.ui.note("%s\n" % fp.name)
 
         fp.write("# HG changeset patch\n")