Skip to content

Commit 00a2713

Browse files
committed
fix typo
1 parent eb047a0 commit 00a2713

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

snakemake/logging.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,10 +244,11 @@ def log_handler(self, msg):
244244

245245

246246
class DefaultFormatter(_logging.Formatter):
247-
def __init__(self, printreason=False, show_failed_logs=False, printshellmds=False):
247+
248+
def __init__(self, printreason=False, show_failed_logs=False, printshellcmds=False):
248249
self.printreason = printreason
249250
self.show_failed_logs = show_failed_logs
250-
self.printshellcmds = printshellmds
251+
self.printshellcmds = printshellcmds
251252
self.last_msg_was_job_info = False
252253

253254
def format(self, record):

0 commit comments

Comments
 (0)