I want to import T_FMT_AMPM from locale lib. But I got error, and that is:
from locale import T_FMT
ImportError: cannot import name 'T_FMT' from 'locale'
So what can I do now? Can u help me ?
I want to import T_FMT_AMPM from locale lib. But I got error, and that is:
from locale import T_FMT
ImportError: cannot import name 'T_FMT' from 'locale'
So what can I do now? Can u help me ?
Sounds like you have circular import references - The thread below explains a bit more
You could try refactoring, or one of the other methods mentioned in the thread above