mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-07 10:01:14 -03:00
simplify invoking create_manpage_completions.py
My previous change to avoid creating a *.pyc file when running create_manpage_completions.py was wrong because I put the `sys.dont_write_bytecode = True` on the wrong line. Rather than simply move that statement make the simpler, cleaner, fix that removes the need for `eval` where that program is invoked.
This commit is contained in:
@@ -3,10 +3,8 @@
|
||||
|
||||
""" Deroff.py, ported to Python from the venerable deroff.c """
|
||||
|
||||
|
||||
import sys, re, string
|
||||
|
||||
sys.dont_write_bytecode = True
|
||||
IS_PY3 = sys.version_info[0] >= 3
|
||||
|
||||
class Deroffer:
|
||||
|
||||
Reference in New Issue
Block a user