Deal with allowDeps in remove

This commit is contained in:
Ken VanDine 2007-09-24 15:27:16 -04:00 committed by Ken VanDine
parent 05cdba0459
commit 92677ced07

View File

@ -12,7 +12,8 @@
import sys
from conaryBackend import PackageKitConaryBackend
package = sys.argv[1]
allowDeps = sys.argv[1]
package = sys.argv[2]
backend = PackageKitConaryBackend(sys.argv[1:])
backend.remove(package)
backend.remove(allowDeps, package)
sys.exit(0)