summaryrefslogtreecommitdiffstats
path: root/Doc/includes/mp_workers.py
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/includes/mp_workers.py')
-rw-r--r--Doc/includes/mp_workers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/includes/mp_workers.py b/Doc/includes/mp_workers.py
index 795e6cb..07e4cdd 100644
--- a/Doc/includes/mp_workers.py
+++ b/Doc/includes/mp_workers.py
@@ -29,7 +29,7 @@ def worker(input, output):
def calculate(func, args):
result = func(*args)
return '%s says that %s%s = %s' % \
- (current_process().get_name(), func.__name__, args, result)
+ (current_process().name, func.__name__, args, result)
#
# Functions referenced by tasks