summaryrefslogtreecommitdiff
path: root/examples/python_scripting.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2018-09-25 09:59:43 -0400
committerTodd Leonhardt <todd.leonhardt@gmail.com>2018-09-25 09:59:43 -0400
commit4c5c66633271c2d1968de4e437397a6d27f77ab7 (patch)
tree2de96dac11bd79e336dcc9c0d85195effe8a13e4 /examples/python_scripting.py
parent3c51b9f32d35c05847c302646575dab576430a01 (diff)
downloadcmd2-git-4c5c66633271c2d1968de4e437397a6d27f77ab7.tar.gz
Removed a Python3-only comment from an example since Python 2 is no longer supported
Diffstat (limited to 'examples/python_scripting.py')
-rwxr-xr-xexamples/python_scripting.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/python_scripting.py b/examples/python_scripting.py
index ab5ecc2b..4c959f58 100755
--- a/examples/python_scripting.py
+++ b/examples/python_scripting.py
@@ -27,7 +27,7 @@ class CmdLineApp(cmd2.Cmd):
# Enable the optional ipy command if IPython is installed by setting use_ipython=True
super().__init__(use_ipython=True)
self._set_prompt()
- self.intro = 'Happy 𝛑 Day. Note the full Unicode support: 😇 (Python 3 only) 💩'
+ self.intro = 'Happy 𝛑 Day. Note the full Unicode support: 😇 💩'
self.locals_in_py = True
def _set_prompt(self):