1
0
Fork 0

Merge "Coding style cleanup"

This commit is contained in:
Conley Owens 2012-10-09 14:29:46 -07:00 committed by Gerrit Code Review
commit 3a6cd4200e
22 changed files with 167 additions and 172 deletions

View file

@ -213,8 +213,6 @@ to update the working directory files.
sys.exit(1)
def _Prompt(self, prompt, value):
mp = self.manifest.manifestProject
sys.stdout.write('%-10s [%s]: ' % (prompt, value))
a = sys.stdin.readline().strip()
if a == '':
@ -332,9 +330,9 @@ to update the working directory files.
self._ConfigureDepth(opt)
if self.manifest.IsMirror:
type = 'mirror '
init_type = 'mirror '
else:
type = ''
init_type = ''
print ''
print 'repo %sinitialized in %s' % (type, self.manifest.topdir)
print 'repo %sinitialized in %s' % (init_type, self.manifest.topdir)