]> git.phdru.name Git - extfs.d.git/blobdiff - dummy
Read-only filesystem.
[extfs.d.git] / dummy
diff --git a/dummy b/dummy
index 0f771d1470912545aec4f9d93b517ce25989b643..034cf0fe79b1cb5d1aaffcc2a358e70afced2051 100755 (executable)
--- a/dummy
+++ b/dummy
@@ -3,17 +3,14 @@
 """
 Dummy VFS for Midnight Commander. Just for a test.
 
-Author: Oleg BroytMann <phd@phd.pp.ru>.
-Copyright (C) 2004 PhiloSoft Design.
-License: GPL.
-
 """
 
 __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 <phd@phd.pp.ru>"
-__copyright__ = "Copyright (C) 2004 PhiloSoft Design"
+__revision__ = "$Id$"
+__date__ = "$Date$"[7:-2]
+__author__ = "Oleg Broytman <phd@phd.pp.ru>"
+__copyright__ = "Copyright (C) 2004-2009 PhiloSoft Design"
+__license__ = "GPL"
 
 
 import sys
@@ -50,8 +47,8 @@ def mcdummy_copyout():
    real_filename = sys.argv[4]
 
    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.write("Copy from %s\n" % dummy_filename)
+   real_file.write("Copy  to  %s\n" % real_filename)
    real_file.close()
 
 
@@ -62,8 +59,8 @@ def mcdummy_copyin():
    real_filename = sys.argv[4]
 
    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.write("Copy from %s\n" % real_filename)
+   real_file.write("Copy  to  %s\n" % dummy_filename)
    real_file.close()