equal
deleted
inserted
replaced
98 |
98 |
99 def init(self): |
99 def init(self): |
100 """method called by the repository once ready to handle request""" |
100 """method called by the repository once ready to handle request""" |
101 pass |
101 pass |
102 |
102 |
103 def backup(self, backupfile): |
103 def backup(self, backupfile, confirm): |
104 """method called to create a backup of source's data""" |
104 """method called to create a backup of source's data""" |
105 pass |
105 pass |
106 |
106 |
107 def restore(self, backupfile, confirm, drop): |
107 def restore(self, backupfile, confirm, drop): |
108 """method called to restore a backup of source's data""" |
108 """method called to restore a backup of source's data""" |