diff options
-rwxr-xr-x | bin/find-german-comments | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/find-german-comments b/bin/find-german-comments index 59e4c88d0b82..a8a3f2e69e9d 100755 --- a/bin/find-german-comments +++ b/bin/find-german-comments @@ -192,7 +192,7 @@ class Parser: elif not self.options.filenames_only: for linenum, s in self.get_comments(path): - if self.is_german(s) and self.options.line_numbers: + if self.is_german(s): print "%s:%s: %s" % (path, linenum, s) else: fnames = set([]) |