dbrtools/dbr/installpatch.py
changeset 200 12422144aae1
parent 179 eab8a264a833
--- a/dbrtools/dbr/installpatch.py	Sat Mar 13 18:56:12 2010 +0000
+++ b/dbrtools/dbr/installpatch.py	Mon Mar 15 16:57:00 2010 +0000
@@ -15,7 +15,7 @@
 
 import sys
 import os.path
-#import shutils
+import shutil
 import dbrutils
 
 
@@ -27,10 +27,10 @@
       if(os.path.exists(patch)):
         patchname = os.path.basename(patch)
         if(not os.path.exists(os.path.join(dbrutils.patchpath(),patchname))):
-          shutils.copyfile(patch, os.path.join(dbrutils.patchpath(),patchname))
+          shutil.copyfile(patch, os.path.join(dbrutils.patchpath(),patchname))
         files = set();
         files.add('*')
-        dbrutils.extractfromzip(files,os.path.join(dbrutils.patchpath(),patchname))
+        dbrutils.extractfromzip(files,os.path.join(dbrutils.patchpath(),patchname),'')
         print 'Should probably run checkenv now...'
       else:
         print 'Cannot find patch zip: %s\n' %patch