- fixed bad find_developer_by_email call

Sat, 15 Nov 2014 16:48:08 +0200

author
Teemu Piippo <crimsondusk64@gmail.com>
date
Sat, 15 Nov 2014 16:48:08 +0200
changeset 85
302e2bec51d8
parent 84
247f4a927835
child 86
6337540fb44b

- 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()

mercurial