Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos in saltlint/linter.py #103

Merged
merged 1 commit into from
Nov 13, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions saltlint/linter.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def run(self, statefile, tags=set(), skip_list=frozenset()):
with codecs.open(statefile['path'], mode='rb', encoding='utf-8') as f:
text = f.read()
except IOError as e:
print("WARNING: Coudn't open %s - %s" %
print("WARNING: Couldn't open %s - %s" %
(statefile['path'], e.strerror),
file=sys.stderr)
return matches
Expand All @@ -111,7 +111,7 @@ def run(self, statefile, tags=set(), skip_list=frozenset()):
rule_definition = set(rule.tags)
rule_definition.add(rule.id)

# Check if the the file is in the rule specific ignore list.
# Check if the file is in the rule specific ignore list.
for definition in rule_definition:
if self.config.is_file_ignored(statefile['path'], definition):
skip = True
Expand Down