diff options
Diffstat (limited to 'utils/trimpciids')
-rwxr-xr-x | utils/trimpciids | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/utils/trimpciids b/utils/trimpciids index dfd5c1e58..1276d755a 100755 --- a/utils/trimpciids +++ b/utils/trimpciids @@ -22,6 +22,9 @@ if f: devices.append( (vend, dev) ) for file in sys.argv[2:]: + if not os.path.exists(file): + sys.stderr.write("WARNING: non-existent file %s for trimpciids\n" %(file,)) + continue f = open(file) if f: pcitable = f.readlines() |