Bug 1415365 - Remove unused imports; r?build draft
authorGregory Szorc <gps@mozilla.com>
Tue, 07 Nov 2017 16:13:44 -0800
changeset 694637 633e682f5b41b064812942ce90e4d233d6323fe4
parent 694565 40df5dd35fdb7ce3652fe4448ac8961c075c928e
child 694638 5c8ba2b26a60d748b86670f1ce4400bed3d6af46
push id88179
push userbmo:gps@mozilla.com
push dateWed, 08 Nov 2017 00:25:28 +0000
reviewersbuild
bugs1415365
milestone58.0a1
Bug 1415365 - Remove unused imports; r?build MozReview-Commit-ID: B8zGAsZvk2H
build/compare-mozconfig/compare-mozconfigs-wrapper.py
build/compare-mozconfig/compare-mozconfigs.py
--- a/build/compare-mozconfig/compare-mozconfigs-wrapper.py
+++ b/build/compare-mozconfig/compare-mozconfigs-wrapper.py
@@ -3,17 +3,16 @@
 # License, v. 2.0. If a copy of the MPL was not distributed with this
 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
 
 from __future__ import unicode_literals
 
 import logging
 import mozunit
 import subprocess
-import sys
 import unittest
 
 from os import path
 from buildconfig import substs
 
 log = logging.getLogger(__name__)
 
 def determine_platform():
--- a/build/compare-mozconfig/compare-mozconfigs.py
+++ b/build/compare-mozconfig/compare-mozconfigs.py
@@ -3,18 +3,16 @@
 # License, v. 2.0. If a copy of the MPL was not distributed with this
 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
 
 # originally from https://hg.mozilla.org/build/tools/file/4ab9c1a4e05b/scripts/release/compare-mozconfigs.py
 
 from __future__ import unicode_literals
 
 import logging
-import os
-import site
 import sys
 import urllib2
 import difflib
 
 FAILURE_CODE = 1
 SUCCESS_CODE = 0
 
 log = logging.getLogger(__name__)