aboutsummaryrefslogtreecommitdiff
path: root/Examples/python/extend/runme.py
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/python/extend/runme.py')
-rw-r--r--Examples/python/extend/runme.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Examples/python/extend/runme.py b/Examples/python/extend/runme.py
index 2bb38fadc..e97358b99 100644
--- a/Examples/python/extend/runme.py
+++ b/Examples/python/extend/runme.py
@@ -18,7 +18,7 @@ class CEO(example.Manager):
# Create an instance of our employee extension class, CEO. The calls to
# getName() and getPosition() are standard, the call to getTitle() uses
-# the director wrappers to call CEO.getPosition. e = CEO("Alice")
+# the director wrappers to call CEO.getPosition.
e = CEO("Alice")
print e.getName(), "is a", e.getPosition()