From c8881bb7facd1323a347388ab26958d18b5e6ba2 Mon Sep 17 00:00:00 2001 From: Yuri Weinstein Date: Mon, 19 May 2014 16:18:48 -0700 Subject: [PATCH] Fixed broken quotations Signed-off-by: Yuri Weinstein --- teuthology/task/samba.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/teuthology/task/samba.py b/teuthology/task/samba.py index 3814ca7f0..a0375c520 100644 --- a/teuthology/task/samba.py +++ b/teuthology/task/samba.py @@ -176,9 +176,9 @@ def task(ctx, config): # let smbd initialize, probably a better way... import time seconds_to_sleep = 100 - log.info("Sleeping for %s seconds..." % seconds_to_sleep) + log.info('Sleeping for %s seconds...' % seconds_to_sleep) time.sleep(seconds_to_sleep) - log.info('Sleeping stopped…’) + log.info('Sleeping stopped...') try: yield -- 2.47.3