projects
/
nmigen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e974a31
)
_toolchain: substitute '+' with 'X' in tool_env_var().
author
Jean-François Nguyen
<jf@lambdaconcept.com>
Fri, 16 Jul 2021 17:16:56 +0000
(19:16 +0200)
committer
whitequark
<whitequark@whitequark.org>
Sat, 17 Jul 2021 06:27:44 +0000
(06:27 +0000)
nmigen/_toolchain/__init__.py
patch
|
blob
|
history
diff --git
a/nmigen/_toolchain/__init__.py
b/nmigen/_toolchain/__init__.py
index fca2bacb31bb4e5de2c978fd92b06da6fd0dfa9e..123c4f0fa20f6e5f5f69ca223605693e2c00e988 100644
(file)
--- a/
nmigen/_toolchain/__init__.py
+++ b/
nmigen/_toolchain/__init__.py
@@
-10,7
+10,7
@@
class ToolNotFound(Exception):
def tool_env_var(name):
- return name.upper().replace("-", "_")
+ return name.upper().replace("-", "_")
.replace("+", "X")
def _get_tool(name):