This patch fixes fedpkg retire, which calls push as a part of the process. Since there is no --force argument on retire command, this caused it to fail with AttributeError.
fedpkg retire
push
--force
retire
AttributeError
Why not self.cmd.push(False) directly?
self.cmd.push(False)
If the attribute is present, we need to use it's value. This is supposed to handle the case when this method is called but self.args does not have force attribute.
self.args
force
Pull-Request has been merged by cqi
This patch fixes
fedpkg retire, which callspushas a part of theprocess. Since there is no
--forceargument onretirecommand, thiscaused it to fail with
AttributeError.