Changes between Version 1 and Version 2 of Ticket #36322, comment 1


Ignore:
Timestamp:
Apr 12, 2025, 6:35:13 AM (5 months ago)
Author:
Rishav

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #36322, comment 1

    v1 v2  
    1 Typo in Command:
    2 Input: python manage.py runsever
    3 output: Unknown command: 'runsever'. Did you mean 'runserver'?
     1### Examples:
     21. **Input**: `python manage.py runsever`
     3   **Expected Output**:
     4   ```
     5   Unknown command: 'runsever'. Did you mean 'runserver'?
     6   ```
    47
    5 Multiple Possible Matches
    6 Input: python manage.py makemgrations
    7 output:Unknown command: 'makemgrations'. Did you mean 'makemigrations' or 'migrate'?
     82. **Input**: `python manage.py makemgrations`
     9   **Expected Output**:
     10   ```
     11   Unknown command: 'makemgrations'. Did you mean 'makemigrations' or 'migrate'?
     12   ```
     13
     143. **Input**: `python manage.py foo`
     15   **Expected Output**:
     16   ```
     17   Unknown command: 'foo'. No similar commands found.
     18   ```
     19
     204. **Input**: `python manage.py runserver`
     21   **Expected Output**:
     22   ```
     23   Running server as expected (no suggestion needed).
     24   ```
Back to Top