Remove deprecated calls to apply()

apply() has been deprecated since Python 2.3, and won't be working in
python 3 anymore. Use the functional equivalent throughout.

Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
This commit is contained in:
Sebastian Spaeth
2011-09-27 12:58:23 +02:00
parent e145beb394
commit ae8a1cb79f
3 changed files with 8 additions and 10 deletions

View File

@ -66,7 +66,7 @@ class CursesUtil:
"""Perform an operation with full locking."""
self.lock()
try:
apply(target, args, kwargs)
target(*args, **kwargs)
finally:
self.unlock()