Skip to content

Commit

Permalink
Merge branch '1.5'
Browse files Browse the repository at this point in the history
Conflicts:
	docs/changelog.rst
  • Loading branch information
bitprophet committed Nov 30, 2012
2 parents 03a43ae + 09046f6 commit f3d83aa
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Expand Up @@ -12,8 +12,6 @@ install:
- "if [[ $TRAVIS_PYTHON_VERSION == '2.5' ]]; then pip install multiprocessing; fi"
script: fab test
notifications:
email:
on_failure: change
irc:
channels: "irc.freenode.org#fabric"
on_success: change
Expand Down
2 changes: 2 additions & 0 deletions docs/changelog.rst
Expand Up @@ -31,6 +31,8 @@ Changelog
* :feature:`249` Allow specification of remote command timeout value by
setting :ref:`env.command_timeout <command_timeout>`. Thanks to Paul
McMillan for suggestion & initial patch.
* Added current host string to prompt abort error messages.
* :release:`1.5.1 <2012-11-15>`
* :bug:`776` Fixed serious-but-non-obvious bug in direct-tcpip driven
gatewaying (e.g. that triggered by ``-g`` or ``env.gateway``.) Should work
correctly now.
Expand Down
4 changes: 3 additions & 1 deletion fabric/utils.py
Expand Up @@ -128,7 +128,9 @@ def fastprint(text, show_prefix=False, end="", flush=True):

def handle_prompt_abort(prompt_for):
import fabric.state
reason = "Needed to prompt for %s, but %%s" % prompt_for
reason = "Needed to prompt for %s (host: %s), but %%s" % (
prompt_for, fabric.state.env.host_string
)
# Explicit "don't prompt me bro"
if fabric.state.env.abort_on_prompts:
abort(reason % "abort-on-prompts was set to True")
Expand Down
2 changes: 1 addition & 1 deletion fabric/version.py
Expand Up @@ -9,7 +9,7 @@
from os.path import abspath, dirname


VERSION = (1, 5, 0, 'final', 0)
VERSION = (1, 5, 1, 'final', 0)


def git_sha():
Expand Down

0 comments on commit f3d83aa

Please sign in to comment.