/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/patch.py

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2019-09-05 03:22:17 UTC
  • mfrom: (7385.1.1 fix-str)
  • Revision ID: breezy.the.bot@gmail.com-20190905032217-hzhc5xww3om1c7jm
Fix syntax error in format expansion.

Merged from https://code.launchpad.net/~jelmer/brz/fix-str/+merge/372312

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
    stdout, stderr = process.communicate(input)
63
63
    status = process.wait()
64
64
    if status < 0:
65
 
        raise Exception("%s killed by signal %i" (args[0], -status))
 
65
        raise Exception("%s killed by signal %i" % (args[0], -status))
66
66
    return stdout, stderr, status
67
67
 
68
68