[web2py] Re: How to use functions defined in models, in modules?

2016-04-18 Thread Anthony
Sounds like a problem in your code. We need to see the code and the traceback. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message b

[web2py] Re: How to use functions defined in models, in modules?

2016-04-18 Thread mfarees . knysys
I tried that but it did not work. I added the function to modules/common.py. Then I used import common and called the function using common.int_or_None(x). After doing this I ran my pytests but they failed on the import statement. This is the error I got: 'thread._local' object has no attribute

[web2py] Re: How to use functions defined in models, in modules?

2016-04-18 Thread Anthony
On Monday, April 18, 2016 at 6:17:26 AM UTC-4, mfarees.kny...@gmail.com wrote: > > I want to use this function in multiple module files. Copying it over to > each one of those files does not seem like a good idea. Is there some other > approach to tackle this cleanly? > No, just put it in one

[web2py] Re: How to use functions defined in models, in modules?

2016-04-18 Thread mfarees . knysys
I want to use this function in multiple module files. Copying it over to each one of those files does not seem like a good idea. Is there some other approach to tackle this cleanly? On Monday, April 18, 2016 at 3:13:37 PM UTC+5, Leonel Câmara wrote: > > This could be done, but it's a bad idea,

[web2py] Re: How to use functions defined in models, in modules?

2016-04-18 Thread Leonel Câmara
This could be done, but it's a bad idea, just put the function itself in a module too instead of defining it in the models. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (R