From 074835e5e55a054be624736852f3646d82ef9e17 Mon Sep 17 00:00:00 2001 From: kennyballou Date: Tue, 21 May 2013 16:46:51 -0600 Subject: Fix pylint W82,8 --- xnt/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- cgit v1.2.1