Merge branch 'py3' of bitbucket.org:ronnyabraham/fabric into py3
This commit is contained in:
commit
9ba3f7d83a
1 changed files with 7 additions and 2 deletions
|
|
@ -829,10 +829,15 @@ def fixtures(appname=None, backup=False):
|
|||
|
||||
if configuration.project.host == 'localhost':
|
||||
p = re.compile("\[localhost\] out:")
|
||||
|
||||
for match in p.finditer(output):
|
||||
pass
|
||||
pos = match.end()
|
||||
output = output[pos:]
|
||||
|
||||
try:
|
||||
pos = match.end()
|
||||
output = output[pos:]
|
||||
except:
|
||||
pass
|
||||
|
||||
# now find the first occurence of [ on a newline, e.g.
|
||||
# [
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue