Skip to content

Commit 865792a

Browse files
committed
tests passing
1 parent 7708353 commit 865792a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

celery/tests/backends/test_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class wrapobject(object):
2929
def __init__(self, *args, **kwargs):
3030
self.args = args
3131

32-
if sys.version_info[0] == 3 or getattr(sys, 'pypy_version_info'):
32+
if sys.version_info[0] == 3 or getattr(sys, 'pypy_version_info', None):
3333
Oldstyle = None
3434
else:
3535
Oldstyle = types.ClassType('Oldstyle', (), {})

0 commit comments

Comments
 (0)