Fix mistake in the last commit

Error detected by the tests.

Signed-off-by: Gonzalo Odiard <gonzalo@laptop.org>
master
Gonzalo Odiard 11 years ago
parent b8074549f6
commit c47b842fb9

@ -67,7 +67,7 @@ class Config(object):
def __init__(self, source_dir, dist_dir=None, dist_name=None):
self.source_dir = source_dir
self.build_dir = os.getcwd()
self.dist_dir = dist_dir or os.path.join(self.source_dir, 'dist')
self.dist_dir = dist_dir or os.path.join(self.build_dir, 'dist')
self.dist_name = dist_name
self.bundle = None
self.version = None

Loading…
Cancel
Save