summaryrefslogtreecommitdiff
path: root/src/distutils2/command/cmd.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/distutils2/command/cmd.py')
-rw-r--r--src/distutils2/command/cmd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/distutils2/command/cmd.py b/src/distutils2/command/cmd.py
index 462bbd2..17a4379 100644
--- a/src/distutils2/command/cmd.py
+++ b/src/distutils2/command/cmd.py
@@ -53,7 +53,7 @@ class Command(object):
# Pre and post command hooks are run just before or just after the command
# itself. They are simple functions that receive the command instance. They
- # should be specified as dotted strings.
+ # are specified as callable objects or dotted strings (for lazy loading).
pre_hook = None
post_hook = None