X-Git-Url: https://git.phdru.name/?p=extfs.d.git;a=blobdiff_plain;f=dummy;fp=dummy;h=0f771d1470912545aec4f9d93b517ce25989b643;hp=5e580b516787f431158ba05c089f780498aa1927;hb=c28275505422c2295f23a3c62c7df522a7b446cc;hpb=e60e467129402c69d32e7174e8a6a3f6bae0112e diff --git a/dummy b/dummy index 5e580b5..0f771d1 100755 --- a/dummy +++ b/dummy @@ -9,9 +9,9 @@ License: GPL. """ -__version__ = "1.0.0" -__revision__ = "$Id: dummy,v 1.7 2004/06/13 13:26:57 phd Exp $" -__date__ = "$Date: 2004/06/13 13:26:57 $"[7:-2] +__version__ = "1.0.1" +__revision__ = "$Id: dummy,v 1.8 2004/06/13 20:45:17 phd Exp $" +__date__ = "$Date: 2004/06/13 20:45:17 $"[7:-2] __author__ = "Oleg Broytmann " __copyright__ = "Copyright (C) 2004 PhiloSoft Design" @@ -49,7 +49,7 @@ def mcdummy_copyout(): dummy_filename = sys.argv[3] real_filename = sys.argv[4] - real_file = open(real_filename, 'w') + real_file = open(real_filename, 'a') real_file.write("Copied from %s\n" % dummy_filename) real_file.write("Copied to %s\n" % real_filename) real_file.close() @@ -61,7 +61,7 @@ def mcdummy_copyin(): dummy_filename = sys.argv[3] real_filename = sys.argv[4] - real_file = open(real_filename + "-dummy.tmp", 'w') + real_file = open(real_filename + "-dummy.tmp", 'a') real_file.write("Copied from %s\n" % real_filename) real_file.write("Copied to %s\n" % dummy_filename) real_file.close()