1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-09-20 09:16:16 +02:00

fix error message in meta_get_filelist()

This commit is contained in:
Dr. Peter Poeml 2006-09-15 09:48:49 +00:00
parent 93c8689202
commit 7f592638be

View File

@ -758,7 +758,7 @@ def meta_get_filelist(prj, package):
try:
f = urllib2.urlopen(u)
except urllib2.HTTPError, e:
print >>sys.stderr, 'error getting filelist for project \'%s\' package \'%s\'' % (prj, pac)
print >>sys.stderr, 'error getting filelist for project \'%s\' package \'%s\'' % (prj, package)
print >>sys.stderr, e
sys.exit(1)