ab5d942f39690714e8ff98b73fc5a10763e30a52
[tablet-suite] / src / backup / .svn / text-base / pcsbackuplocation.py.svn-base
1 # Class Backup_Category holds osso-backup .conf files informations
2
3 class PcsBackupLocation:
4     """Backup_Location class.
5     Used for holding location attributes from parsed osso-backup xml files.
6
7     """
8     def __init__(self, type, category, path):
9         self.category = category
10         self.type = type
11         self.path = path