We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fe584f commit 3ea1730Copy full SHA for 3ea1730
1 file changed
client/deis.py
@@ -119,7 +119,7 @@ def get_formation(self):
119
# try to match a deis remote
120
remotes = subprocess.check_output(['git', 'remote', '-v'],
121
cwd=git_root)
122
- m = re.match(r'^deis\W+(?P<url>\S+)\W+\(', remotes, re.MULTILINE)
+ m = re.search(r'^deis\W+(?P<url>\S+)\W+\(', remotes, re.MULTILINE)
123
if not m:
124
raise EnvironmentError(
125
'Could not find deis remote in `git remote -v`')
0 commit comments