1
0
mirror of https://github.com/projectatomic/atomic.git synced 2026-02-05 18:45:01 +01:00

Atomic/help.py: cmd_env no longer a property

When the cmd_env defition had its property decorator removed,
a single call to cmd_env in help.py was missed.
This commit is contained in:
Brent Baude
2016-02-16 11:11:13 -06:00
parent 01bf0e0900
commit 570ee912bd

View File

@@ -91,5 +91,5 @@ class AtomicHelp(Atomic):
"""
cmd = self.gen_cmd(self.alt_help_cmd.split(" "))
self.display(cmd)
util.check_call(cmd, env=self.cmd_env)
util.check_call(cmd, env=self.cmd_env())