Skip to content

Commit

Permalink
Fix logging
Browse files Browse the repository at this point in the history
  • Loading branch information
staktrace committed Sep 13, 2012
1 parent 0cf8366 commit e5dd758
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mozregression/runnightly.py
Expand Up @@ -261,12 +261,13 @@ def install(self, date=datetime.date.today()):
if not self.app.download(date=date):
print "could not find nightly from " + str(date)
return False # download failed
print "Starting nightly\n"
print "Installing nightly\n"
return self.app.install()

def start(self, date=datetime.date.today()):
if not self.install(date):
return False
print "Starting nightly\n"
if not self.app.start(self.profile, self.addons, self.cmdargs):
return False
return True
Expand Down

0 comments on commit e5dd758

Please sign in to comment.