Better wording.
This commit is contained in:
parent
2373e78cbd
commit
5c75832efb
2 changed files with 5 additions and 2 deletions
3
tools.py
3
tools.py
|
|
@ -550,6 +550,9 @@ def php5_syntax(path):
|
||||||
php5_syntax.dependencies = {"php5"}
|
php5_syntax.dependencies = {"php5"}
|
||||||
|
|
||||||
|
|
||||||
|
#############################
|
||||||
|
|
||||||
|
|
||||||
def lru_cache_with_eviction(maxsize=128, typed=False):
|
def lru_cache_with_eviction(maxsize=128, typed=False):
|
||||||
versions = {}
|
versions = {}
|
||||||
make_key = functools._make_key
|
make_key = functools._make_key
|
||||||
|
|
|
||||||
4
vigil
4
vigil
|
|
@ -1068,8 +1068,8 @@ def check_arguments():
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
root_path, worker_count, is_sandboxed, editor_command = check_arguments()
|
root_path, worker_count, is_sandboxed, editor_command = check_arguments()
|
||||||
subprocess.call(["sudo", "-p", "Vigil needs sudo to run any script that "
|
subprocess.call(["sudo", "-p", "Vigil uses sudo... "
|
||||||
"needs sudo... [sudo] password for %u: ", "true"])
|
"[sudo] password for %u: ", "true"])
|
||||||
with terminal.console_title("vigil: " + os.path.basename(root_path)):
|
with terminal.console_title("vigil: " + os.path.basename(root_path)):
|
||||||
manage_cache(root_path)
|
manage_cache(root_path)
|
||||||
with chdir(root_path): # FIX: Don't change directory if possible.
|
with chdir(root_path): # FIX: Don't change directory if possible.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue