Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
trac #31590: add missing optional statements
Browse files Browse the repository at this point in the history
  • Loading branch information
dcoudert committed Jan 5, 2022
1 parent 7537643 commit 37a5b40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sage/graphs/graph_generators.py
Original file line number Diff line number Diff line change
Expand Up @@ -1553,9 +1553,9 @@ def plantri_gen(self, options=""):
Wrong input, ``"-c 3"`` instead of ``"-c3"``::
sage: list(graphs.plantri_gen("6 -c3"))
sage: list(graphs.plantri_gen("6 -c3")) # optional plantri
[Graph on 6 vertices, Graph on 6 vertices]
sage: list(graphs.plantri_gen("6 -c 3"))
sage: list(graphs.plantri_gen("6 -c 3")) # optional plantri
Traceback (most recent call last):
...
AttributeError: invalid options '6 -c 3'
Expand Down

0 comments on commit 37a5b40

Please sign in to comment.