Commit 7153e708 authored by Jim Fulton's avatar Jim Fulton

Removed an unreachable branch.

parent 82a21a38
...@@ -213,10 +213,7 @@ class Installer: ...@@ -213,10 +213,7 @@ class Installer:
# any are newer. We only do this if we're willing to install # any are newer. We only do this if we're willing to install
# something, which is only true if dest is not None: # something, which is only true if dest is not None:
if self._dest is not None: best_available = self._obtain(req, source)
best_available = self._obtain(req, source)
else:
best_available = None
if best_available is None: if best_available is None:
# That's a bit odd. There aren't any distros available. # That's a bit odd. There aren't any distros available.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment