Skip to content

Commit 30e2714

Browse files
committed
[py3-compat] Only use str values for configparser
1 parent 666a98c commit 30e2714

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runtests.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def createTracEnvironment(cls, **kwargs):
172172
conf.set('github', 'alt.repository', 'follower/trac-github')
173173
conf.set('github', 'alt.branches', '%s stable/*' % GIT_DEFAULT_BRANCH)
174174
if 'request_email' in kwargs:
175-
conf.set('github', 'request_email', kwargs['request_email'])
175+
conf.set('github', 'request_email', str(kwargs['request_email']))
176176
if 'preferred_email_domain' in kwargs:
177177
conf.set('github', 'preferred_email_domain', kwargs['preferred_email_domain'])
178178
if 'organization' in kwargs:

0 commit comments

Comments
 (0)