Skip to content

Commit

Permalink
ConsoleInteractor: Grammar correction
Browse files Browse the repository at this point in the history
  • Loading branch information
sils committed Feb 21, 2015
1 parent 28dbb95 commit ced9bf5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions coalib/output/ConsoleInteractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,10 @@ def acquire_settings(self, settings_names_dict):

def _require_setting(self, setting_name, arr):
if not isinstance(arr, list) or len(arr) < 2:
self.log_printer.log(LOG_LEVEL.WARNING, _("One of the given settings ({}) are not properly "
"described.").format(str(setting_name)))
self.log_printer.log(LOG_LEVEL.WARNING,
_("One of the given settings ({}) is not "
"properly described.").
format(str(setting_name)))

return None

Expand Down

1 comment on commit ced9bf5

@Makman2
Copy link
Member

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.