Writing errors to stderr in Python stubs.

This commit is contained in:
Daniel Baumann 2013-04-07 07:55:25 +02:00
parent f9f13cb60e
commit 39ef5a723c
2 changed files with 6 additions and 6 deletions

View File

@ -40,7 +40,7 @@ def main():
## Parsing Configuration
if not os.path.isfile('config/build'):
print('E: config/build - no such file')
print('E: config/build - no such file', file=sys.stderr)
sys.exit(1)
@ -83,7 +83,7 @@ def main():
# dependencies
if not os.path.isfile('/usr/bin/cdebootstrap'):
print('E: /usr/bin/cdebootstrap - no such file')
print('E: /usr/bin/cdebootstrap - no such file', file=sys.stderr)
if verbose:
print('I: cdebootstrap can be optained from:\n'
@ -96,7 +96,7 @@ def main():
# clean
if os.path.exists('chroot'):
print('E: chroot already exists - unclean build')
print('E: chroot already exists - unclean build', file=sys.stderr)
if verbose:
print('I: use \'lb clean\' to clean up a previously incomplete build')

View File

@ -40,7 +40,7 @@ def main():
## Parsing Configuration
if not os.path.isfile('config/build'):
print('E: config/build - no such file')
print('E: config/build - no such file', file=sys.stderr)
sys.exit(1)
@ -88,7 +88,7 @@ def main():
# dependencies
if not os.path.isfile('/usr/sbin/debootstrap'):
print('E: /usr/sbin/debootstrap - no such file')
print('E: /usr/sbin/debootstrap - no such file', file=sys.stderr)
if verbose:
print('I: debootstrap can be optained from:\n'
@ -101,7 +101,7 @@ def main():
# clean
if os.path.exists('chroot'):
print('E: chroot already exists - unclean build')
print('E: chroot already exists - unclean build', file=sys.stderr)
if verbose:
print('I: use \'lb clean\' to clean up a previously incomplete build')