Generate process_list with comments by default
This commit is contained in:
parent
bb0da1ab78
commit
bce4de58f0
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ class Installer:
|
||||||
ui.info("Generating 'process_list.txt'")
|
ui.info("Generating 'process_list.txt'")
|
||||||
|
|
||||||
with open("process_list.txt", "w") as process_file:
|
with open("process_list.txt", "w") as process_file:
|
||||||
process_file.write("\n".join(self.conf.keys()) + "\n")
|
process_file.write("# " + "\n# ".join(self.conf.keys()) + "\n")
|
||||||
|
|
||||||
def pretty_path(self, path: Path) -> str:
|
def pretty_path(self, path: Path) -> str:
|
||||||
"""Put the ~/ back in the path."""
|
"""Put the ~/ back in the path."""
|
||||||
|
|
Loading…
Add table
Reference in a new issue