Husen Daudi 2007-05-03 09:44:49 +00:00
parent 8bccea6fb1
commit 586cb38481
1 changed files with 2 additions and 0 deletions

View File

@ -33,6 +33,8 @@ class move_module_wizard(wizard.interface):
def zippy(self,path, archive):
paths = os.listdir(path)
for p in paths:
if p=='.svn':
continue
p = os.path.join(path, p) # Make the path relative
if os.path.isdir(p): # Recursive case
self.zippy(p, archive)