From 44e6b1011d27ad90824c35360bb20724f58a466c Mon Sep 17 00:00:00 2001 From: "jkeating@localhost.localdomain" <> Date: Mon, 23 Oct 2006 22:18:02 -0400 Subject: [PATCH] Heee, shutil.copy not os.copy --- pungi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pungi.py b/pungi.py index 0fc49217..b50c5095 100755 --- a/pungi.py +++ b/pungi.py @@ -22,7 +22,7 @@ class Pungi: self.prodpath = 'Fedora' # Probably should be defined elsewhere self.basedir = os.path.join(self.opts.destdir, self.opts.arch, self.prodpath, 'base') # Probably should be defined elsewhere os.mkdir(self.basedir) - os.copy(self.opts.comps, os.path.join(self.basedir, 'comps.xml')) + shutil.copy(self.opts.comps, os.path.join(self.basedir, 'comps.xml')) # def doCreateSplitrepo(self): # for disc in seq