Skip to content

Commit

Permalink
Make self.project_dir not hardcoded to '.' in TopLevelCommand
Browse files Browse the repository at this point in the history
  • Loading branch information
joshgordon committed Apr 6, 2017
1 parent 7aa5512 commit 77cc656
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compose/cli/main.py
Expand Up @@ -203,7 +203,7 @@ class TopLevelCommand(object):

def __init__(self, project, project_dir='.'):
self.project = project
self.project_dir = '.'
self.project_dir = project_dir

def build(self, options):
"""
Expand Down

0 comments on commit 77cc656

Please sign in to comment.