Check-in [2e49eacad9]
Overview
| Comment: | Undo extra os.system("start \"%s\"") quotes for Windows. |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
2e49eacad9c61463a6297dae0d5e9bd9 |
| User & Date: | mario on 2016-11-01 21:57:41 |
| Other Links: | manifest | tags |
Context
|
2016-11-05
| ||
| 23:55 | Reciva: add search function check-in: 30cdbc9ba4 user: mario tags: trunk | |
|
2016-11-01
| ||
| 21:57 | Undo extra os.system("start \"%s\"") quotes for Windows. check-in: 2e49eacad9 user: mario tags: trunk | |
| 16:03 | Contrib plugin: show `extra` column in bookmarks (origin channel). Changed bookmark.add() to add it only if field missing. check-in: 5bc9e1a5f8 user: mario tags: trunk | |
Changes
Modified action.py from [8b37efd187] to [114f820dd5].
| ︙ | ︙ | |||
126 127 128 129 130 131 132 |
}
# Exec wrapper
def run(cmd):
log.EXEC(cmd)
| | | 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 |
}
# Exec wrapper
def run(cmd):
log.EXEC(cmd)
try: os.system("start %s" % cmd if conf.windows else cmd + " &")
except: log.ERR("Command not found:", cmd)
# Open help browser, streamtuner2 pages
def help(*args):
run("yelp /usr/share/doc/streamtuner2/help/")
# Invokes player/recorder for stream url and format
|
| ︙ | ︙ |