meld r1193 - trunk



Author: kaiw
Date: Mon Mar  2 18:14:08 2009
New Revision: 1193
URL: http://svn.gnome.org/viewvc/meld?rev=1193&view=rev

Log:
Fix regression in copying files

Modified:
   trunk/misc.py

Modified: trunk/misc.py
==============================================================================
--- trunk/misc.py	(original)
+++ trunk/misc.py	Mon Mar  2 18:14:08 2009
@@ -290,7 +290,7 @@
     """
     if os.path.isdir(dst):
         dst = os.path.join(dst, os.path.basename(src))
-        shutil.copyfile(src, dst)
+    shutil.copyfile(src, dst)
     try:
         shutil.copystat(src, dst)
     except OSError, e:



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]