Minor cleanup for tox -epep8 to pass

Change-Id: Ibdd4d5646d6ca658bc8bac790b5119e548566999
This commit is contained in:
Julia Kreger 2014-08-19 14:18:08 -04:00
parent 3cac68ef5c
commit 8024e267df
3 changed files with 6 additions and 6 deletions

View File

@ -15,11 +15,11 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import ConfigParser
import argparse
import ConfigParser
import subprocess
parser = argparse.ArgumentParser(description='A foo that bars')
parser = argparse.ArgumentParser(description='Exmaple iterative updater')
parser.add_argument('-p', dest='playbook', help='main.yml', required=True)
parser.add_argument(
'-l',
@ -59,6 +59,6 @@ with open(results.instances) as list:
'-i',
results.inventory
)
print "Executing:"
print args
print('Executing:\n')
print(args)
subprocess.call(args)