summaryrefslogtreecommitdiff
path: root/obnamlib/repo_interface.py
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2015-07-25 14:17:28 +0300
committerLars Wirzenius <liw@liw.fi>2015-07-25 14:26:08 +0300
commit631a029f32aab55aab22e181d2c7d7b1b56e8309 (patch)
tree0c31627d2e527b696cef5eba3c5327cb12a86b78 /obnamlib/repo_interface.py
parenta0012677e1c736cdc8a9c525e33a62fb38fbd50d (diff)
downloadobnam-631a029f32aab55aab22e181d2c7d7b1b56e8309.tar.gz
Drop --ignore-missing-chunks option
We want robustness by default, and always.
Diffstat (limited to 'obnamlib/repo_interface.py')
-rw-r--r--obnamlib/repo_interface.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/obnamlib/repo_interface.py b/obnamlib/repo_interface.py
index 50832290..f16d6925 100644
--- a/obnamlib/repo_interface.py
+++ b/obnamlib/repo_interface.py
@@ -572,14 +572,11 @@ class RepositoryInterface(object):
'''Set a key/value pair for a given generation.'''
raise NotImplementedError()
- def remove_generation(self, generation_id, ignore_missing_chunks=False):
+ def remove_generation(self, generation_id):
'''Remove an existing generation.
The removed generation may be the currently unfinished one.
- When removing chunks, don't try to remove those that are missing
- if ignore_missing_chunks is set to True.
-
'''
raise NotImplementedError()