summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoshpere <devnull@localhost>2016-04-14 12:04:20 -0700
committerjoshpere <devnull@localhost>2016-04-14 12:04:20 -0700
commit6d00104096a4986308df8f737460fb9d0716504d (patch)
treecf8ec17c9196ea15956a9e13b926ef63e71b9e15
parentb47956354960dcae6de72300cfa8d9d341d43f2b (diff)
downloadtox-6d00104096a4986308df8f737460fb9d0716504d.tar.gz
Cleanup: Format comments for easier reading.
-rw-r--r--tox/venv.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/tox/venv.py b/tox/venv.py
index 35a50e5..fb6ed77 100644
--- a/tox/venv.py
+++ b/tox/venv.py
@@ -79,11 +79,11 @@ class VirtualEnv(object):
return "<VirtualEnv at %r>" % (self.path)
def getcommandpath(self, name, venv=True, cwd=None):
- """ return absolute path (str or localpath) for specified
- command name. If it's a localpath we will rewrite it as
- as a relative path. If venv is True we will check if the
- command is coming from the venv or is whitelisted to come
- from external. """
+ """ Return absolute path (str or localpath) for specified command name.
+ - If it's a local path we will rewrite it as as a relative path.
+ - If venv is True we will check if the command is coming from the venv
+ or is whitelisted to come from external.
+ """
name = str(name)
if os.path.isabs(name):
return name