Skip to content

Commit

Permalink
Builder: Ignore version number warning from dch
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Mar 14, 2012
1 parent 0a2cd51 commit 7eb8207
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion distrib/builder/utils.py
Expand Up @@ -118,7 +118,7 @@ def count_log_word(fn, word):
pos = txt.find(unicode(word), pos)
if pos < 0: break
if txt[pos-1] not in '/\\_'+string.ascii_letters and txt[pos+len(word)] != 's' and \
txt[pos-11:pos] != 'shlibdeps: ':
txt[pos-11:pos] != 'shlibdeps: ' and txt[pos-12:pos] != 'genchanges: ':
count += 1
pos += len(word)
return count
Expand Down

0 comments on commit 7eb8207

Please sign in to comment.