Merge lp:~canonical-isd-hackers/canonical-identity-provider/fix-run-command into lp:canonical-identity-provider/release

Proposed by Łukasz Czyżykowski
Status: Merged
Approved by: Ricardo Kirkner
Approved revision: no longer in the source branch.
Merged at revision: 185
Proposed branch: lp:~canonical-isd-hackers/canonical-identity-provider/fix-run-command
Merge into: lp:canonical-identity-provider/release
Diff against target: 12 lines (+1/-1)
1 file modified
payload/__init__.py (+1/-1)
To merge this branch: bzr merge lp:~canonical-isd-hackers/canonical-identity-provider/fix-run-command
Reviewer Review Type Date Requested Status
Canonical ISD hackers Pending
Review via email: mp+67707@code.launchpad.net

Commit message

Fix for fab run command.

Description of the change

Overview
========
Fix for fab run command.

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'payload/__init__.py'
2--- payload/__init__.py 2011-07-12 13:48:00 +0000
3+++ payload/__init__.py 2011-07-12 14:31:22 +0000
4@@ -91,7 +91,7 @@
5 test(functional=True, coverage=True)
6
7
8-def run():
9+def run(*args):
10 """Run SSO using devserver."""
11 virtualenv('python django_project/manage.py runserver ' + ' '.join(args),
12 capture=False)