Merge pull request #1274 from tony/vcs_imports

[trivial] vcs_support: organize imports
front-end-standardization
Eric Holscher 2015-05-21 09:03:09 -07:00
commit 4d71456ba5
4 changed files with 11 additions and 7 deletions

View File

@ -1,12 +1,14 @@
import logging
from django.conf import settings
from github2.client import Github
from vcs_support.base import BaseContributionBackend
import base64
import os
import urllib
import urllib2
from django.conf import settings
from github2.client import Github
from vcs_support.base import BaseContributionBackend
log = logging.getLogger(__name__)

View File

@ -1,4 +1,5 @@
from launchpadlib.launchpad import Launchpad
from vcs_support.base import VCSVersion
from vcs_support.backends import bzr

View File

@ -1,9 +1,9 @@
import logging
from collections import namedtuple
import os
from os.path import basename
import shutil
import subprocess
from collections import namedtuple
from os.path import basename
from django.template.defaultfilters import slugify
@ -131,7 +131,7 @@ class BaseVCS(BaseCLI):
"""
raise NotImplementedError
@property
def commit(self):
"""

View File

@ -1,8 +1,9 @@
import mock
import os
import shutil
import unittest
import mock
from django.conf import settings
from vcs_support import utils