File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 7
7
lxml
8
8
python-utils
9
9
] ;
10
- python27 = pkgs . python27 . withPackages python_packages ;
11
10
python3 = pkgs . python3 . withPackages python_packages ;
12
11
in
13
12
stdenv . mkDerivation rec {
@@ -27,7 +26,6 @@ stdenv.mkDerivation rec {
27
26
clang-tools
28
27
gperftools
29
28
perl
30
- python27
31
29
python3
32
30
time
33
31
] ;
Original file line number Diff line number Diff line change @@ -227,11 +227,11 @@ def vtr_command_main(arg_list, prog=None):
227
227
228
228
config_files = [find_task_config_file (task_name ) for task_name in task_names ]
229
229
configs = []
230
- common_task_prefix = None # common task prefix to shorten task names
230
+ common_task_prefix = "" # common task prefix to shorten task names
231
231
for config_file in config_files :
232
232
config = load_task_config (config_file )
233
233
configs += [config ]
234
- if common_task_prefix is None :
234
+ if not common_task_prefix :
235
235
common_task_prefix = config .task_name
236
236
else :
237
237
match = SequenceMatcher (
You can’t perform that action at this time.
0 commit comments