~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/externalcommand.py

  • Committer: Patch Queue Manager
  • Date: 2016-04-21 05:06:57 UTC
  • mfrom: (6603.4.1 bzr)
  • Revision ID: pqm@pqm.ubuntu.com-20160421050657-ygnzfybewvudf1j9
(richard-wilbur) Use initial_comment as commit_message for lp_propose.(Shawn
 Wang) (Shawn Wang)

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
 
17
from __future__ import absolute_import
 
18
 
17
19
# TODO: Perhaps rather than mapping options and arguments back and
18
20
# forth, we should just pass in the whole argv, and allow
19
21
# ExternalCommands to handle it differently to internal commands?
20
22
 
21
23
 
22
24
import os
23
 
import sys
24
25
 
25
26
from bzrlib.commands import Command
26
 
from bzrlib.osutils import pathjoin
27
27
 
28
28
 
29
29
class ExternalCommand(Command):