[12:04:32] <xterm> hello! do pypi and testpypi share accounts or are they different accounts? the reason I'm asking is because it seems I have not verified my testpypi account and lost the email to do so, I'm planning on deleting recreating my account if there's no other solution.
[17:41:28] <liav3000> Hi. I'm trying to upload a package to our localshop server and getting "InterpolationSyntaxError: '%' must be followed by '%' or '(', found: u'%wSnda'"
[17:42:06] <liav3000> This is with twine v1.5.0 on OS X, using both `twine upload dist/*` and `twine upload dist/farmer-0.5.0.tar.gz`
[17:46:29] <dstufft> liav3000: I think you pust published your password
[17:47:23] <dstufft> liav3000: in any case, you need to upgrade your twine to 1.7+ to get the ability to use % in your .pypirc
[17:50:41] <liav3000> @dstufft, I don't know what that string is, but it's not a password for anything. <shrug>
[17:51:17] <dstufft> liav3000: okay! Just wanted to make sure, it looked password-ish :)
[17:52:07] <liav3000> I'm also not even using any string interpolation in my index-url, it's just [global] index-url = https://<user>:<password>@our.localshot.com/simple.
[17:53:45] <dstufft> liav3000: yea, prior to twine 1.7 it used ConfigParser which does interpolation so a % value anywhere broke it. In 1.7 it was switched to use RawCofingParser so that it didn't do that anymore