Skip to content

Commit

Permalink
DbusDocument: result -> results
Browse files Browse the repository at this point in the history
Pluralized name is more appropriate.
  • Loading branch information
sils committed Jun 22, 2015
1 parent b95725e commit 4463cd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions coalib/output/dbus/DbusDocument.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,15 +119,15 @@ def Analyze(self):

if is_applicable:
section["files"].value = self.path
result = execute_section(
results = execute_section(
section=section,
global_bear_list=global_bears[section_name],
local_bear_list=local_bears[section_name],
print_results=interactor.print_results,
log_printer=log_printer)

retval.append(
DbusDocument.results_to_dbus_struct(result, section_name))
DbusDocument.results_to_dbus_struct(results, section_name))

return retval

Expand Down

1 comment on commit 4463cd8

@fneu
Copy link
Contributor

@fneu fneu commented on 4463cd8 Jun 24, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ack

Please sign in to comment.