From c9f32a96c5b460a5bed30dc32dc52aa74a88574e Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Fri, 23 Oct 2009 11:39:29 +0200 Subject: [PATCH] [molecule] update code style --- molecule.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/molecule.py b/molecule.py index e9dd712..21efd17 100644 --- a/molecule.py +++ b/molecule.py @@ -1,5 +1,5 @@ #!/usr/bin/python -O -# -*- coding: iso-8859-1 -*- +# -*- coding: utf-8 -*- # Molecule Disc Image builder for Sabayon Linux # Copyright (C) 2009 Fabio Erculiani # @@ -33,5 +33,6 @@ for el in molecule_data_order: my = Runner(el, molecule_data.get(el)) rc = my.run() my.kill() - if rc != 0: raise SystemExit(rc) + if rc != 0: + raise SystemExit(rc) raise SystemExit(0) \ No newline at end of file