Skip to content
Snippets Groups Projects
Commit 75d92989 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Merge branch 'remove_header_warnings' into 'master'

Remove noise 'unknown header' warnings

See merge request !6
parents c2541d93 6e70e3f0
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -255,9 +255,6 @@ module Grit
author = UserInfo.new(value)
when "committer"
committer = UserInfo.new(value)
else
warn "unknown header '%s' in commit %s" % \
[key, rawobject.sha1.unpack("H*")[0]]
end
end
if not tree && author && committer
Loading
Loading
@@ -322,9 +319,6 @@ module Grit
tag = value
when "tagger"
tagger = UserInfo.new(value)
else
warn "unknown header '%s' in tag" % \
[key, rawobject.sha1.unpack("H*")[0]]
end
end
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment