Check-in [a2ef839027]
Overview
| Comment: | Fix hidden `conf.cmd` lookup |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
a2ef83902727ae9f40719dac872a0940 |
| User & Date: | mario on 2016-11-06 20:06:57 |
| Other Links: | manifest | tags |
Context
|
2016-11-06
| ||
| 20:48 | Apply unhtml() after resolve_urn() lookup. check-in: 5cda19beb0 user: mario tags: trunk | |
| 20:06 | Fix hidden `conf.cmd` lookup check-in: a2ef839027 user: mario tags: trunk | |
| 18:53 | Remove newstation_ok/_cancel signal symbols. check-in: 045ec7be83 user: mario tags: trunk | |
Changes
Modified action.py from [8587c265d6] to [ce49d58115].
| ︙ | ︙ | |||
129 130 131 132 133 134 135 |
# "urn:reciva": stream_resolve(),
}
# Exec wrapper
def run(cmd):
| | | 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 |
# "urn:reciva": stream_resolve(),
}
# Exec wrapper
def run(cmd):
if "cmd" in conf:
cmd = conf.cmd % cmd
elif conf.windows:
cmd = "start " + cmd
else:
cmd = cmd + " &"
try:
log.EXEC(cmd)
|
| ︙ | ︙ |