diff options
-rwxr-xr-x | scan.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -42,7 +42,8 @@ def main(): if len(uuids) == 1: my_uuid = open(uuids[0]).readline().strip() else: - print('removing:', uuids) + if uuids: + print('removing:', uuids) for f in uuids: os.unlink(f) my_uuid = create_uuid_txt(root) |