summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkennyballou <kballou@onyx.boisestate.edu>2013-05-21 16:46:51 -0600
committerkennyballou <kballou@onyx.boisestate.edu>2013-05-21 16:46:51 -0600
commit074835e5e55a054be624736852f3646d82ef9e17 (patch)
tree5e8569b0b3a07b838dd87e0f93c9bcf180092c05
parent667010435411d94bcd76a7517bc74e109b17bcbb (diff)
downloadxnt-074835e5e55a054be624736852f3646d82ef9e17.tar.gz
xnt-074835e5e55a054be624736852f3646d82ef9e17.tar.xz
Fix pylint W82,8
-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: