Skip to content

Commit

Permalink
Include the "ipython3" command for IPython
Browse files Browse the repository at this point in the history
In certain types of Linux packaging, the command for the IPython interpreter may be named "ipython2" and/or "ipython3" rather than simply "ipython" to distinguish Python 2.x and 3.x interpreter versions.
  • Loading branch information
novaTopFlex committed Apr 18, 2024
1 parent cf5dbc4 commit 9c6922a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion guake/prefs.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@

# A regular expression to match possible python interpreters when
# filling interpreters combo in preferences (including bpython and ipython)
PYTHONS = re.compile(r"^[a-z]python$|^python\d\.\d$|^python\d\.\d\d$")
PYTHONS = re.compile(r"^[a-z]python$|^[a-z]python\d$|^python\d\.\d$|^python\d\.\d\d$")

# Path to the shells file, it will be used to start to populate
# interpreters combo, see the next variable, its important to fill the
Expand Down

0 comments on commit 9c6922a

Please sign in to comment.