Revert "Updating the import for results from buildbot"

This reverts commit c2d22ba6ab.
This commit is contained in:
Sergio Durigan Junior 2016-03-01 01:34:09 -05:00
parent c2d22ba6ab
commit 52e6cb7df1
3 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
# GDB .sum-fetching command. # GDB .sum-fetching command.
from buildbot.process.results import SUCCESS, WARNINGS, FAILURE, EXCEPTION from buildbot.status.builder import SUCCESS, WARNINGS, FAILURE, EXCEPTION
from buildbot.steps.shell import ShellCommand from buildbot.steps.shell import ShellCommand
from sumfiles import DejaResults, get_web_base from sumfiles import DejaResults, get_web_base
from gdbgitdb import switch_to_branch from gdbgitdb import switch_to_branch

View file

@ -1,6 +1,6 @@
# DB-like with git # DB-like with git
from buildbot.process.results import SUCCESS, WARNINGS, FAILURE, EXCEPTION from buildbot.status.builder import SUCCESS, WARNINGS, FAILURE, EXCEPTION
from buildbot.steps.shell import ShellCommand from buildbot.steps.shell import ShellCommand
from sumfiles import get_web_base from sumfiles import get_web_base
import os.path import os.path

View file

@ -23,7 +23,7 @@ from buildbot.steps.source.git import Git
from buildbot.steps.slave import RemoveDirectory from buildbot.steps.slave import RemoveDirectory
from buildbot.changes.filter import ChangeFilter from buildbot.changes.filter import ChangeFilter
from buildbot.buildslave import BuildSlave from buildbot.buildslave import BuildSlave
from buildbot.process.results import SUCCESS, WARNINGS, FAILURE, EXCEPTION from buildbot.status.results import SUCCESS, WARNINGS, FAILURE, EXCEPTION
from gdbcommand import CopyOldGDBSumFile, GdbCatSumfileCommand from gdbcommand import CopyOldGDBSumFile, GdbCatSumfileCommand
from gdbgitdb import SaveGDBResults, get_builder_commit_id from gdbgitdb import SaveGDBResults, get_builder_commit_id
from urllib import quote from urllib import quote