apparently setup.py if statement *does* work.. adding it back in

This commit is contained in:
Nathan Fritz 2010-02-24 19:56:57 +00:00
parent ed60867a63
commit 7d41d68293

View file

@ -44,10 +44,10 @@ packages = [ 'sleekxmpp',
'sleekxmpp/xmlstream/matcher', 'sleekxmpp/xmlstream/matcher',
'sleekxmpp/xmlstream/handler' ] 'sleekxmpp/xmlstream/handler' ]
#if sys.version_info < (3, 0): if sys.version_info < (3, 0):
# packages.append('sleekxmpp/xmlstream/tostring26') packages.append('sleekxmpp/xmlstream/tostring26')
#else: else:
# packages.append('sleekxmpp/xmlstream/tostring') packages.append('sleekxmpp/xmlstream/tostring')
setup( setup(
name = "sleekxmpp", name = "sleekxmpp",