Sat, 15 Nov 2014 16:48:08 +0200
- fixed bad find_developer_by_email call
hgpoll.py | file | annotate | diff | comparison | revisions |
--- a/hgpoll.py Wed Nov 12 14:24:11 2014 +0200 +++ b/hgpoll.py Sat Nov 15 16:48:08 2014 +0200 @@ -273,7 +273,7 @@ commit_diffstat = 'No changes in files.' # Compare the email addresses against known developer usernames - commit_trackeruser = find_developer_by_email (commit_email) + commit_trackeruser = Config.find_developer_by_email (commit_email) if commit_trackeruser != '': commit_author += ' [%s]' % commit_trackeruser @@ -336,4 +336,4 @@ def force_poll(): global repocheck_timeout repocheck_timeout = 0 - poll() \ No newline at end of file + poll()