Skip to content

Commit 6f678bb

Browse files
committed
py3k compatibility
1 parent 7100f9d commit 6f678bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

virtualenvwrapper/hook_loader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def run_hooks(hook, options, args, output=None):
134134
continue
135135
plugin = ep.load()
136136
if options.listing:
137-
sys.stdout.write(' %-10s -- %s' % (ep.name, inspect.getdoc(plugin) or '')
137+
sys.stdout.write(' %-10s -- %s' % (ep.name, inspect.getdoc(plugin) or ''))
138138
continue
139139
if options.sourcing:
140140
# Show the shell commands so they can

0 commit comments

Comments
 (0)