Skip to content
This repository was archived by the owner on Nov 1, 2022. It is now read-only.

Commit 71285f8

Browse files
pocmomergify[bot]
authored andcommitted
Closes #10158: Fix list_compatible_dependency_versions.py
This fixes a regression from #10070.
1 parent 0f11c79 commit 71285f8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tools/list_compatible_dependency_versions.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
import os
1818
import sys
19-
from enum import Enum
2019
from urllib.error import HTTPError
2120
from urllib.request import urlopen
2221

@@ -177,7 +176,7 @@ def main_repo_to_hash(fenix_path, is_no_fenix_passed):
177176
print(INDENT2 + ac_hash.decode('utf-8'))
178177
print()
179178

180-
mc_hash, _, _, nightlyv, = ac_checkout_to_mc_hash(PATH_AC_ROOT)
179+
mc_hash, nightlyv, = ac_checkout_to_mc_hash(PATH_AC_ROOT)
181180
print('Building ac with a local GeckoView?')
182181
print(INDENT + 'The last known GV nightly version that cleanly builds with your ac checkout is...')
183182
print(INDENT2 + nightlyv)

0 commit comments

Comments
 (0)