summaryrefslogtreecommitdiff
path: root/rdiff-backup/rdiff_backup/restore.py
diff options
context:
space:
mode:
Diffstat (limited to 'rdiff-backup/rdiff_backup/restore.py')
-rw-r--r--rdiff-backup/rdiff_backup/restore.py9
1 files changed, 2 insertions, 7 deletions
diff --git a/rdiff-backup/rdiff_backup/restore.py b/rdiff-backup/rdiff_backup/restore.py
index 3d065ae..a7b6b3e 100644
--- a/rdiff-backup/rdiff_backup/restore.py
+++ b/rdiff-backup/rdiff_backup/restore.py
@@ -90,18 +90,13 @@ def ListChangedSince(mirror_rp, inc_rp, restore_to_time):
def ListAtTime(mirror_rp, inc_rp, time):
- """List the files in archive at the given time
-
- Output is a RORP Iterator with info in index. See ListChangedSince.
-
- """
+ """List the files in archive at the given time"""
assert mirror_rp.conn is Globals.local_connection, "Run locally only"
MirrorStruct.set_mirror_and_rest_times(time)
MirrorStruct.initialize_rf_cache(mirror_rp, inc_rp)
old_iter = MirrorStruct.get_mirror_rorp_iter(_rest_time, 1)
- for rorp in old_iter:
- yield rpath.RORPath((rorp.get_indexpath(),))
+ for rorp in old_iter: yield rorp
class MirrorStruct: