Skip to content

Commit

Permalink
Merge pull request #41 from jlec/master
Browse files Browse the repository at this point in the history
Fix more python3 incompatibilities
  • Loading branch information
lebinh committed Feb 17, 2015
2 parents c34fe7e + dbc06a4 commit 170caa1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ngxtop/config_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def detect_log_config(arguments):

log_formats = dict(get_log_formats(config_str))
if len(access_logs) == 1:
log_path, format_name = access_logs.items()[0]
log_path, format_name = list(access_logs.items())[0]
if format_name == 'combined':
return log_path, LOG_FORMAT_COMBINED
if format_name not in log_formats:
Expand All @@ -115,7 +115,7 @@ def detect_log_config(arguments):

# multiple access logs configured, offer to select one
print('Multiple access logs detected in configuration:')
log_path = choose_one(access_logs.keys(), 'Select access log file to process: ')
log_path = choose_one(list(access_logs.keys()), 'Select access log file to process: ')
format_name = access_logs[log_path]
if format_name not in log_formats:
error_exit('Incorrect format name set in config for access log file "%s"' % log_path)
Expand Down
Empty file modified ngxtop/ngxtop.py
100755 → 100644
Empty file.
4 changes: 3 additions & 1 deletion ngxtop/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ def choose_one(choices, prompt):
for idx, choice in enumerate(choices):
print('%d. %s' % (idx + 1, choice))
selected = None
if sys.version[0] == '3':
raw_input = input
while not selected or selected <= 0 or selected > len(choices):
selected = raw_input(prompt)
try:
Expand All @@ -16,4 +18,4 @@ def choose_one(choices, prompt):

def error_exit(msg, status=1):
sys.stderr.write('Error: %s\n' % msg)
sys.exit(status)
sys.exit(status)

0 comments on commit 170caa1

Please sign in to comment.