aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--failed1
-rwxr-xr-xmkbinder.py5
2 files changed, 3 insertions, 3 deletions
diff --git a/failed b/failed
deleted file mode 100644
index fe51488..0000000
--- a/failed
+++ /dev/null
@@ -1 +0,0 @@
-[]
diff --git a/mkbinder.py b/mkbinder.py
index 607e197..1bca79a 100755
--- a/mkbinder.py
+++ b/mkbinder.py
@@ -50,5 +50,6 @@ for category in os.listdir('Links'):
failed.append(name)
# Output failed downloads
-print(failed)
-print(failed, file=open('failed', 'w'))
+if len(failed) > 0:
+ print(failed)
+ print(failed, file=open('failed', 'w'))