diff options
-rwxr-xr-x | bin/repoman | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/repoman b/bin/repoman index 4b813a3a1..17f10a63b 100755 --- a/bin/repoman +++ b/bin/repoman @@ -686,7 +686,7 @@ for x in scanlist: continue try: line = 1 - for l in codecs.open(y, "r", "utf8"): + for l in codecs.open(checkdir+"/"+y, "r", "utf8"): line +=1 except UnicodeDecodeError, ue: stats["file.UTF8"] += 1 |