summaryrefslogtreecommitdiff
path: root/testall.py
diff options
context:
space:
mode:
authorNathan Fritz <fritzy@netflint.net>2010-01-29 23:57:57 -0800
committerNathan Fritz <fritzy@netflint.net>2010-01-29 23:57:57 -0800
commit5e736f4b978414c111062ffb220e38eb40765db6 (patch)
tree9ef6f7c278e102a6ffb0db9ce0015a7919dfa900 /testall.py
parent23b9930c44608e633437c8ec80ef687dd9c0a8b2 (diff)
downloadslixmpp-5e736f4b978414c111062ffb220e38eb40765db6.tar.gz
slixmpp-5e736f4b978414c111062ffb220e38eb40765db6.tar.bz2
slixmpp-5e736f4b978414c111062ffb220e38eb40765db6.tar.xz
slixmpp-5e736f4b978414c111062ffb220e38eb40765db6.zip
fixed setup.py issue with unicode in 3.x
Diffstat (limited to 'testall.py')
-rw-r--r--testall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testall.py b/testall.py
index bf5e1a99..bf0b4c76 100644
--- a/testall.py
+++ b/testall.py
@@ -13,7 +13,7 @@ class testoverall(unittest.TestCase):
if sys.version_info < (3,0):
self.failUnless(compileall.compile_dir('.' + os.sep + 'sleekxmpp', rx=re.compile('/[.]svn'), quiet=True))
else:
- self.failUnless(compileall.compile_dir('.' + os.sep + 'sleekxmpp', rx=re.compile('/[.]svn|26.py'), quiet=True))
+ self.failUnless(compileall.compile_dir('.' + os.sep + 'sleekxmpp', rx=re.compile('/[.]svn|.*26\Z'), quiet=True))
def testTabNanny(self):
"""Invoking the tabnanny"""