mirror of
				https://github.com/robweber/xbmcbackup.git
				synced 2025-10-31 01:21:02 +01:00 
			
		
		
		
	fixed error in backup rotation
This commit is contained in:
		| @@ -2,6 +2,8 @@ Version 0.5.2 | ||||
|  | ||||
| added additional script and window parameters, thanks Samu-rai | ||||
|  | ||||
| critical error in backup rotation | ||||
|  | ||||
| Version 0.5.1 | ||||
|  | ||||
| updated for new Gotham xbmc python updates | ||||
|   | ||||
| @@ -390,7 +390,7 @@ class XbmcBackup: | ||||
|                 self.filesTotal = self.filesTotal + remove_num + 1 | ||||
|  | ||||
|                 #update the progress bar if it is available | ||||
|                 while(remove_num < total_backups and not self._checkCancel()): | ||||
|                 while(remove_num < (len(dirs) - total_backups) and not self._checkCancel()): | ||||
|                     self._updateProgress(utils.getString(30054) + " " + dirs[remove_num][1]) | ||||
|                     utils.log("Removing backup " + dirs[remove_num][0]) | ||||
|                     self.remote_vfs.rmdir(self.remote_base_path + dirs[remove_num][0] + "/") | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 robweberjr@gmail.com
					robweberjr@gmail.com