~nskaggs/juju-release-tools/generate-release-notes

« back to all changes in this revision

Viewing changes to build_package.py

  • Committer: Aaron Bentley
  • Date: 2015-10-09 16:40:49 UTC
  • mto: (218.1.29 generate-simplestreams)
  • mto: This revision was merged to the branch mainline in revision 222.
  • Revision ID: aaron.bentley@canonical.com-20151009164049-a52mhysyt12ppogy
Fix lint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
from __future__ import print_function
5
5
 
6
 
__metaclass__ = type
7
 
 
8
6
from argparse import ArgumentParser
9
7
from collections import namedtuple
10
8
import os
13
11
import subprocess
14
12
import sys
15
13
 
 
14
__metaclass__ = type
 
15
 
16
16
 
17
17
# This constant defines the location of the base source package branch.
18
18
DEFAULT_SPB = 'lp:~juju-qa/juju-release-tools/packaging-juju-core-default'