diff options
author | Bill Nottingham <notting@redhat.com> | 2005-11-16 15:48:05 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2005-11-16 15:48:05 +0000 |
commit | 1043f7f8ec192e1d80f752c7a37270cc0771fcfb (patch) | |
tree | b28694f83bc0afa50d253444734866bc96d1e728 | |
parent | e5712658e70bb6093a396b0e942e38a938b7c1d6 (diff) | |
download | anaconda-1043f7f8ec192e1d80f752c7a37270cc0771fcfb.tar.gz anaconda-1043f7f8ec192e1d80f752c7a37270cc0771fcfb.tar.xz anaconda-1043f7f8ec192e1d80f752c7a37270cc0771fcfb.zip |
fix typo
-rw-r--r-- | ChangeLog | 4 | ||||
-rwxr-xr-x | utils/trimpciids | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2005-11-16 Bill Nottingham <notting@redhat.com> + + * utils/trimpciids: Fix tyop + 2005-11-15 Jeremy Katz <katzj@redhat.com> * scripts/upd-instroot (KEEPFILEGR): Remove new chinese font for diff --git a/utils/trimpciids b/utils/trimpciids index a1900e3ca..dfd5c1e58 100755 --- a/utils/trimpciids +++ b/utils/trimpciids @@ -21,7 +21,7 @@ if f: if (vend, dev) not in devices: devices.append( (vend, dev) ) -for file in sys.argv[2:] +for file in sys.argv[2:]: f = open(file) if f: pcitable = f.readlines() |