Fix parameter opts for _get_changed

This commit is contained in:
Alberto Planas 2014-02-11 11:08:02 +01:00
parent b8807c4bd2
commit 86ff0438c5

View File

@ -318,7 +318,7 @@ def _staging_check(self, project, check_everything, opts):
"""
ret = 0
chng = _get_changed(opts.apiurl, project, check_everything)
chng = _get_changed(opts, project, check_everything)
if len(chng) > 0:
for pair in chng:
print >>sys.stderr, 'Error: Package "%s": %s'%(pair['pkg'],pair['msg'])