From 6d00104096a4986308df8f737460fb9d0716504d Mon Sep 17 00:00:00 2001 From: joshpere Date: Thu, 14 Apr 2016 12:04:20 -0700 Subject: Cleanup: Format comments for easier reading. --- tox/venv.py | 10 +++++----- 1 file 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 "" % (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 -- cgit v1.2.1