From 7b9f670690ea76b0e4e320f854f4591f1cefd035 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Metin?= Date: Fri, 1 Jul 2005 12:17:34 +0000 Subject: [PATCH] =?UTF-8?q?comment'i=20=C3=A7=C4=B1kart?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pisi/util.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pisi/util.py b/pisi/util.py index a371d980..9a8bd75a 100644 --- a/pisi/util.py +++ b/pisi/util.py @@ -142,11 +142,6 @@ def copy_file(src,dest): """copy source file to destination file""" check_file(src) check_dir(os.path.dirname(dest)) -#don't reinvent the wheel -# fs = file(src, 'rb') -# fd = file(dest, 'wb') -# for l in fs: -# fd.write(l) shutil.copyfile(src, dest) def get_file_hashes(top, excludePrefixes=None, removePrefix=None):