Skip to content

Commit

Permalink
[#262] Ensure the play application is created after the real ID is known
Browse files Browse the repository at this point in the history
  • Loading branch information
erwan committed Oct 11, 2010
1 parent 4113131 commit 3f5b5a8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion play
Expand Up @@ -66,7 +66,6 @@ try:
if remaining_args.count('--force') == 1:
remaining_args.remove('--force')
ignoreMissing = True
play_app = PlayApplication(application_path, play_env, ignoreMissing)

# ~~~~~~~~~~~~~~~~~~~~~~ What is the command?
if len(sys.argv) > 1:
Expand All @@ -88,6 +87,8 @@ try:
print "~ framework ID is %s" % play_env["id"]
print "~"

play_app = PlayApplication(application_path, play_env, ignoreMissing)

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ~~~~~~~~~~~~~~~~~~~~~~ The commands ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down

0 comments on commit 3f5b5a8

Please sign in to comment.