Hi,Today I accidentally deleted my virtualenv folder... I recreated it, but since then I can't use my app that uses the motor driver. That's strange because it worked just fin with the old virtualenv.See what happens when I try with an exemple from the motor website:$ python test_motor.pyTraceback (most recent call last):File "test_motor.py", line 52, in <module>db = motor.MotorClient().open_sync().testFri May 17 20:08:25.785 [initandlisten] connection accepted from 127.0.0.1:53909 #1 (1 connection now open)File "/home/yb/code/venv/lib/python2.7/site-packages/motor/__init__.py", line 792, in open_syncself._open(callback)File "/home/yb/code/venv/lib/python2.7/site-packages/motor/__init__.py", line 741, in _opengr.switch()SystemError: error return without exception setopen method in motor/__init__.py is this:def _open(self, callback):check_callable(callback)if self.delegate:# Already openif callback:self.io_loop.add_callback(functools.partial(callback, self, None))returndef _connect():# Run on child greenleterror = Nonetry:args, kwargs = self._delegate_init_args()self.delegate = self.__delegate_class__(*args, **kwargs)except Exception, e:error = eif callback:# Schedule callback to be executed on main greenlet, with# (self, None) if no error, else (None, error)self.io_loop.add_callback(functools.partial(callback, None if error else self, error))# Actually connect on a child greenletgr = greenlet.greenlet(_connect)gr.switch()Here are the packages versions I have installed in thie new virtual environment, they are the exact same I had before:(venv) $ pip freezegreenlet==0.4.0motor==0.1pymongo==2.5.1tornado==3.0.1wsgiref==0.1.2Can someone tell me what's wrong ?--
--
You received this message because you are subscribed to the Google
Groups "mongodb-user" group.
To post to this group, send email to mongod...@googlegroups.com
To unsubscribe from this group, send email to
mongodb-user...@googlegroups.com
See also the IRC channel -- freenode.net#mongodb
---
You received this message because you are subscribed to the Google Groups "mongodb-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mongodb-user...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
You received this message because you are subscribed to a topic in the Google Groups "mongodb-user" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/mongodb-user/vKkEmBFiznQ/unsubscribe?hl=en.
To unsubscribe from this group and all its topics, send an email to mongodb-user...@googlegroups.com.