From 4a8316bd99d2bac7d8de25e8ca8a0262ea22d8cd Mon Sep 17 00:00:00 2001 From: Ikey Doherty Date: Wed, 27 Jul 2016 17:06:40 +0100 Subject: [PATCH] Ensure the codebase is now PEP8 compliant This change also fixed a broken shebang Signed-off-by: Ikey Doherty --- swupd/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/swupd/__init__.py b/swupd/__init__.py index 5c75ce0..b14c083 100755 --- a/swupd/__init__.py +++ b/swupd/__init__.py @@ -1,4 +1,4 @@ -#/usr/bin/env python +#!/usr/bin/env python import subprocess import urllib2 import os @@ -48,7 +48,7 @@ def install_bundles(bundle_list, F=None, url=None): err = "" exit_status = 1 else: - cmd = ['sudo','swupd','bundle-add'] + cmd = ['sudo', 'swupd', 'bundle-add'] if bundle in bundle_universe: cmd += [bundle] if F is not None: