From 674338bc987fb1c34555b41f10e769e3d36328ed Mon Sep 17 00:00:00 2001 From: "shital.rtcamp" Date: Mon, 16 Feb 2015 16:36:29 +0530 Subject: [PATCH] Fixed bug of fileutils.py --- ee/core/fileutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ee/core/fileutils.py b/ee/core/fileutils.py index 4d479190..a0bf27ff 100644 --- a/ee/core/fileutils.py +++ b/ee/core/fileutils.py @@ -70,7 +70,7 @@ class EEFileUtils(): """ try: Log.debug(self, "Copying file, Source:{0}, Dest:{1}" - .format(src, dst)) + .format(src, dest)) shutil.copy2(src, dest) except shutil.Error as e: Log.debug(self, "{0}".format(e))