| 223 | | Django-specific you're using -- your views, your models, your URLconf, your RSS |
|---|
| 224 | | configuration, etc. Put these imports in your test handler function and access |
|---|
| 225 | | your test URL in a browser. If this causes a crash, you've confirmed it's the |
|---|
| 226 | | importing of Django code that causes the problem. Gradually reduce the set of |
|---|
| 227 | | imports until it stops crashing, so as to find the specific module that causes |
|---|
| 228 | | the problem. Drop down further into modules and look into their imports, as |
|---|
| 229 | | necessary. |
|---|
| | 223 | Django-specific code you're using -- your views, your models, your URLconf, |
|---|
| | 224 | your RSS configuration, etc. Put these imports in your test handler function |
|---|
| | 225 | and access your test URL in a browser. If this causes a crash, you've confirmed |
|---|
| | 226 | it's the importing of Django code that causes the problem. Gradually reduce the |
|---|
| | 227 | set of imports until it stops crashing, so as to find the specific module that |
|---|
| | 228 | causes the problem. Drop down further into modules and look into their imports, |
|---|
| | 229 | as necessary. |
|---|