Changeset - 468e226bbaa5
[Not reviewed]
default
0 1 0
Marcin Kuzminski - 16 years ago 2010-03-01 12:51:14

removed uunneded thing.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
pylons_app/lib/backup_manager.py
Show inline comments
 
@@ -47,7 +47,7 @@ class BackupManager(object):
 
        bckp_file = os.path.join(self.backup_file_path, self.backup_file_name)
 
        tar = tarfile.open(bckp_file, "w:gz")
 

	
 
        for dir in os.listdir(self.repos_path)[:2]:
 
        for dir in os.listdir(self.repos_path):
 
            logging.info('backing up %s', dir)
 
            tar.add(os.path.join(self.repos_path, dir), dir)
 
        tar.close()
0 comments (0 inline, 0 general)