summaryrefslogtreecommitdiff
path: root/xnt/tasks.py
diff options
context:
space:
mode:
Diffstat (limited to 'xnt/tasks.py')
-rw-r--r--xnt/tasks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/xnt/tasks.py b/xnt/tasks.py
index 15c167f..c32193d 100644
--- a/xnt/tasks.py
+++ b/xnt/tasks.py
@@ -79,7 +79,7 @@ def mkdir(directory, mode=0o777):
return
"""
if os.path.exists(directory):
- LOGGER.warning("Given directory (%s) already exists" % directory)
+ LOGGER.warning("Given directory (%s) already exists", directory)
return
LOGGER.info("Making directory %s with mode %o", directory, mode)
try: