Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar_network/client/solver.py
diff options
context:
space:
mode:
Diffstat (limited to 'sugar_network/client/solver.py')
-rw-r--r--sugar_network/client/solver.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/sugar_network/client/solver.py b/sugar_network/client/solver.py
index 13bc7a4..9f1b6e7 100644
--- a/sugar_network/client/solver.py
+++ b/sugar_network/client/solver.py
@@ -174,10 +174,6 @@ def _impl_new(config, iface, sel):
impl['path'] = sel.local_path
if sel.impl.to_install:
impl['install'] = sel.impl.to_install
- if sel.impl.download_sources:
- extract = sel.impl.download_sources[0].extract
- if extract:
- impl['extract'] = extract
commands = sel.get_commands()
if commands:
impl['command'] = commands.values()[0].path.split()
@@ -275,7 +271,7 @@ class _Feed(model.ZeroInstallFeed):
if isabs(impl_id):
impl.local_path = impl_id
else:
- impl.add_download_source(impl_id, 0, release.get('extract'))
+ impl.add_download_source(impl_id, 0, None)
for name, command in release['commands'].items():
impl.commands[name] = _Command(name, command)