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

Commit

Permalink
src/sage/graphs/graph_generators.py: Add missing space in command line
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Koeppe committed Mar 8, 2022
1 parent d0e2179 commit 9107e2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/graphs/graph_generators.py
Original file line number Diff line number Diff line change
Expand Up @@ -1384,7 +1384,7 @@ def fusenes(self, hexagon_count, benzenoids=False):

import shlex
command = shlex.quote(Benzene().absolute_filename())
command += ('b' if benzenoids else '') + ' {0} p'.format(hexagon_count)
command += (' b' if benzenoids else '') + ' {0} p'.format(hexagon_count)

sp = subprocess.Popen(command, shell=True,
stdin=subprocess.PIPE, stdout=subprocess.PIPE,
Expand Down

0 comments on commit 9107e2c

Please sign in to comment.