Skip to content

Commit 223e8b6

Browse files
Merge branch 'verilog-to-routing:master' into fixed_chan_width_bug
2 parents 5e59252 + dd7fd42 commit 223e8b6

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

dev/nix/shell.nix

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ let
77
lxml
88
python-utils
99
];
10-
python27 = pkgs.python27.withPackages python_packages;
1110
python3 = pkgs.python3.withPackages python_packages;
1211
in
1312
stdenv.mkDerivation rec {
@@ -27,7 +26,6 @@ stdenv.mkDerivation rec {
2726
clang-tools
2827
gperftools
2928
perl
30-
python27
3129
python3
3230
time
3331
];

vtr_flow/scripts/run_vtr_task.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,11 +227,11 @@ def vtr_command_main(arg_list, prog=None):
227227

228228
config_files = [find_task_config_file(task_name) for task_name in task_names]
229229
configs = []
230-
common_task_prefix = None # common task prefix to shorten task names
230+
common_task_prefix = "" # common task prefix to shorten task names
231231
for config_file in config_files:
232232
config = load_task_config(config_file)
233233
configs += [config]
234-
if common_task_prefix is None:
234+
if not common_task_prefix:
235235
common_task_prefix = config.task_name
236236
else:
237237
match = SequenceMatcher(

0 commit comments

Comments
 (0)