summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorMichael Schroeder <mls@suse.de>2013-08-23 18:07:53 +0200
committerMichael Schroeder <mls@suse.de>2013-08-23 18:07:53 +0200
commite946434a7029e6428d54496dd364dbe11d20dac0 (patch)
tree26cf0d299d4c991c3665d55d110029f82e26f612 /examples
parent8c5a5fc0bee0487a6f14c3e3aae539c3b0578a16 (diff)
downloadlibsolv-e946434a7029e6428d54496dd364dbe11d20dac0.tar.gz
libsolv-e946434a7029e6428d54496dd364dbe11d20dac0.tar.bz2
libsolv-e946434a7029e6428d54496dd364dbe11d20dac0.zip
oops, revert unwanted commit chunks
Diffstat (limited to 'examples')
-rwxr-xr-xexamples/pysolv10
1 files changed, 0 insertions, 10 deletions
diff --git a/examples/pysolv b/examples/pysolv
index b93b136..a658eab 100755
--- a/examples/pysolv
+++ b/examples/pysolv
@@ -757,7 +757,6 @@ for job in jobs:
job.how |= solv.Job.SOLVER_CLEANDEPS
#pool.set_debuglevel(2)
-pool.set_debuglevel(3)
solver = pool.Solver()
solver.set_flag(solv.Solver.SOLVER_FLAG_SPLITPROVIDES, 1);
if cmd == 'erase':
@@ -799,15 +798,6 @@ while True:
# no problems, show transaction
trans = solver.transaction()
-
-for p in trans.newsolvables():
- (reason, rule) = solver.describe_decision(p)
- print "package", p
- print "reason", reason
- print "rule", rule
- if rule:
- print rule.info().problemstr()
-
del solver
if trans.isempty():
print "Nothing to do."