Jason Lei

Results 13 comments of Jason Lei

Unfortunately I cannot. elementary OS corrupted itself shortly after and I've just finished reinstalling everything. In the coming week, I'll try and reproduce it in a VM but as of...

UPDATE: Running on mainline kernel 4.2.3 (Stable) and I have no issues with launching the configurator. One big difference besides the kernels is... I'm still running Python 2.7.6 and not...

That' the thing, when I was running 4.3 RC3, I had Python 2.7.10 installed instead of 2.7.6 which may have been the cause of the problems. Sorry I hadn't worded...

Any updates on this? Or is this now a dead project?

I'm working on this currently. Should be done by the weeks end if not sooner. Going to thank @judilsteve for the help on some of the logic as well as...

Data comparators are complete for the find endpoint. Update and remove endpoints to come soon.

I'm probably going to fix this when I write the logic for the data operator's that do comparators.

Can confirm, this is happening to me as well. My code: ```python db = records.Database(...uri) tx = db.transaction() try: db.query(...query) db.query(...another_query) tx.commit() except: tx.rollback() ``` ``` ... AttributeError: '_GeneratorContextManager' object...

Nevermind! I figured it out, my code is wrong. After looking at `records.py` and the unit tests, this is the proper way for using transactions: ```python db = records.Database(...uri) conn...

Any updates on this?