1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-05 18:50:09 +02:00

fix PEP8 "E401 multiple imports on one line"

This commit is contained in:
Hans-Christoph Steiner 2014-05-01 22:36:12 -04:00
parent fcca0ddb1f
commit 2f2618e06c
10 changed files with 22 additions and 10 deletions

View File

@ -30,7 +30,8 @@ import HTMLParser
from distutils.version import LooseVersion from distutils.version import LooseVersion
import logging import logging
import common, metadata import common
import metadata
from common import BuildException from common import BuildException
from common import VCSException from common import VCSException
from metadata import MetaDataException from metadata import MetaDataException

View File

@ -17,7 +17,9 @@
# You should have received a copy of the GNU Affero General Public License # You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
import os, sys, re import os
import sys
import re
import shutil import shutil
import glob import glob
import stat import stat

View File

@ -25,7 +25,8 @@ import urllib
from optparse import OptionParser from optparse import OptionParser
from ConfigParser import ConfigParser from ConfigParser import ConfigParser
import logging import logging
import common, metadata import common
import metadata
# Get the repo type and address from the given web page. The page is scanned # Get the repo type and address from the given web page. The page is scanned
# in a rather naive manner for 'git clone xxxx', 'hg clone xxxx', etc, and # in a rather naive manner for 'git clone xxxx', 'hg clone xxxx', etc, and

View File

@ -20,7 +20,8 @@
from optparse import OptionParser from optparse import OptionParser
import re import re
import logging import logging
import common, metadata import common
import metadata
config = None config = None
options = None options = None

View File

@ -17,7 +17,9 @@
# You should have received a copy of the GNU Affero General Public License # You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
import os, re, glob import os
import re
import glob
import cgi import cgi
import logging import logging

View File

@ -26,7 +26,8 @@ import glob
from optparse import OptionParser from optparse import OptionParser
import logging import logging
import common, metadata import common
import metadata
from common import FDroidPopen, BuildException from common import FDroidPopen, BuildException
config = None config = None

View File

@ -17,7 +17,8 @@
# You should have received a copy of the GNU Affero General Public License # You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
import os, metadata import os
import metadata
def main(): def main():

View File

@ -20,7 +20,8 @@
import os import os
from optparse import OptionParser from optparse import OptionParser
import logging import logging
import common, metadata import common
import metadata
config = None config = None
options = None options = None

View File

@ -22,7 +22,8 @@ import traceback
from optparse import OptionParser from optparse import OptionParser
import logging import logging
import common, metadata import common
import metadata
from common import BuildException from common import BuildException
from common import VCSException from common import VCSException

View File

@ -32,7 +32,8 @@ import time
from PIL import Image from PIL import Image
import logging import logging
import common, metadata import common
import metadata
from common import FDroidPopen from common import FDroidPopen
from metadata import MetaDataException from metadata import MetaDataException