diff --git a/backupbot.py b/backupbot.py index 525d4ca..f2b6570 100755 --- a/backupbot.py +++ b/backupbot.py @@ -440,7 +440,7 @@ def path_exists(path): def snapshots(): snapshots = get_snapshots() for snap in snapshots: - output = [snap['time'], snap['id']] + output = [snap['time'].split('.')[0], snap['short_id']] if tags:= snap.get('tags'): app_versions = app_versions_from_tags(tags) if version:= app_versions.get(SERVICE):