Changes between Initial Version and Version 1 of Ticket #34807, comment 4


Ignore:
Timestamp:
Aug 31, 2023, 3:08:27 PM (13 months ago)
Author:
Natalia Bidart

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #34807, comment 4

    initial v1  
    22
    33{{{
    4 python3 -c"from django import forms"
     4python3 -c "from django import forms"
    55}}}
    66
    77Does anyone understand why the difference? (my main question is why this wasn't picked up by the tests or my IRL testing within a Django test project)
     8
     9EDIT: as said in the description, the import works when issuing:
     10
     11{{{
     12python3 -c "from django.db import models; from django import forms"
     13}}}
Back to Top