Skip to content

Commit 4f96494

Browse files
committed
Merge pull request pex-tool#146 from rouge8/tainted
Fix a logging typo when determining the minimum sys.path
2 parents dda6501 + 3aa1445 commit 4f96494

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pex/pex.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ def all_distribution_paths(path):
160160
TRACER.log('Tainted path element: %s' % path_element)
161161
site_distributions.update(all_distribution_paths(path_element))
162162
else:
163-
TRACER.log('Not a tained path element: %s' % path_element, V=2)
163+
TRACER.log('Not a tainted path element: %s' % path_element, V=2)
164164

165165
user_site_distributions.update(all_distribution_paths(USER_SITE))
166166

0 commit comments

Comments
 (0)