aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/dl_cleanup.py
diff options
context:
space:
mode:
authorMichael Büsch <mb@bu3sch.de>2010-01-09 18:58:28 +0000
committerMichael Büsch <mb@bu3sch.de>2010-01-09 18:58:28 +0000
commit7a9a0ea725c40ded203008f1bb9939ad2fa37672 (patch)
tree146065140eb6f6ff3f8e316cf42509410774d960 /scripts/dl_cleanup.py
parent3239b197f1be3bc37d1b9e3a97fdc1342a757077 (diff)
downloadmaster-187ad058-7a9a0ea725c40ded203008f1bb9939ad2fa37672.tar.gz
master-187ad058-7a9a0ea725c40ded203008f1bb9939ad2fa37672.tar.bz2
master-187ad058-7a9a0ea725c40ded203008f1bb9939ad2fa37672.zip
dl_cleanup: Show it to the user, if file extension or version pattern is unknown
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19085 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts/dl_cleanup.py')
-rwxr-xr-xscripts/dl_cleanup.py10
1 files changed, 3 insertions, 7 deletions
diff --git a/scripts/dl_cleanup.py b/scripts/dl_cleanup.py
index 7adc475d4d..48f587de52 100755
--- a/scripts/dl_cleanup.py
+++ b/scripts/dl_cleanup.py
@@ -11,8 +11,6 @@ import os
import re
import getopt
-DEBUG = 0
-
# Commandline options
opt_dryrun = False
@@ -94,7 +92,7 @@ blacklist = [
(".fw", re.compile(r".*\.fw")),
(".arm", re.compile(r".*\.arm")),
(".bin", re.compile(r".*\.bin")),
- ("rt-firmware", re.compile(r"RT\d+_Firmware.*")),
+ ("rt-firmware", re.compile(r"RT[\d\w]+_Firmware.*")),
]
class EntryParseError(Exception): pass
@@ -110,8 +108,7 @@ class Entry:
filename = filename[0:0-len(ext)]
break
else:
- if DEBUG:
- print "Extension did not match on", filename
+ print self.filename, "has an unknown file-extension"
raise EntryParseError("ext")
for (regex, parseVersion) in versionRegex:
match = regex.match(filename)
@@ -119,8 +116,7 @@ class Entry:
(self.progname, self.version) = parseVersion(match)
break
else:
- if DEBUG:
- print "Version regex did not match on", filename
+ print self.filename, "has an unknown version pattern"
raise EntryParseError("ver")
def deleteFile(self):