diff options
author | Philipp Riemer <ruderphilipp@gmail.com> | 2014-01-02 18:38:55 +0100 |
---|---|---|
committer | Philipp Riemer <ruderphilipp@gmail.com> | 2014-01-02 18:39:08 +0100 |
commit | 05175da8b4c1331e74b9293e3dbce8426df6a7d0 (patch) | |
tree | 34e11ebc0c6061a76dc06e965151e832e34ebb00 /bin/find-german-comments | |
parent | 0f13f675ed98b32cbd0a0976939334b44b97b439 (diff) |
fix error in bin/find-german-comments
Change-Id: Ice848243654b1bc8923ba65fe87c61e8087c0d8a
Diffstat (limited to 'bin/find-german-comments')
-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([]) |