list backups now lists file names without the whole path

2.x-1.16
szymon 2020-08-05 20:35:38 +02:00
parent 073f01740f
commit e6814c4588
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ public class ListBackupsCommand {
while(iterator.hasNext()) {
builder.append(",\n");
builder.append(iterator.next());
builder.append(iterator.next().getName());
}
}