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

items, not iteritems #23

Merged
merged 1 commit into from Aug 23, 2013
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

items, not iteritems

python3 doesn't have iteritems, and the difference isn't important
here.
  • Loading branch information
Mike Blume
Mike Blume committed Aug 22, 2013
commit 463d1e65ca87311fb8d13487b1da89df02078e30
@@ -488,7 +488,7 @@ def perform_sanity_check(current_environment):
index = 0
running_syslog_count = 0
for (syslog_name, syslog_version)\
in current_environment['supported_syslog_versions'].iteritems():
in current_environment['supported_syslog_versions'].items():
if check_syslog_service_status(
list(
current_environment['supported_syslog_versions'].keys()
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.