]> Frank Brehm's Git Trees - pixelpark/create-vmware-tpl.git/commitdiff
Applied Flake8 rules
authorFrank Brehm <frank.brehm@pixelpark.com>
Wed, 6 Feb 2019 16:20:42 +0000 (17:20 +0100)
committerFrank Brehm <frank.brehm@pixelpark.com>
Wed, 6 Feb 2019 16:20:42 +0000 (17:20 +0100)
lib/cr_vmware_tpl/app.py
lib/cr_vmware_tpl/handler.py

index 777f34b3e9cc859ab9dafc1be3ba702c49b970d8..2ec09fa1e8231447e160df0306ef5747b41df384 100644 (file)
@@ -31,7 +31,7 @@ from .config import CrTplConfiguration
 
 from .handler import CrTplHandler
 
-__version__ = '1.0.0'
+__version__ = '1.0.1'
 LOG = logging.getLogger(__name__)
 
 
@@ -40,6 +40,7 @@ class CrTplAppError(FbAppError):
     """ Base exception class for all exceptions in this application."""
     pass
 
+
 # =============================================================================
 class NrTemplatesOptionAction(argparse.Action):
 
index 521069791045cdbb9ffa59f7b03ec15977c740d1..9a21924997ab0d683a44e6d9512680b85234776b 100644 (file)
@@ -9,7 +9,6 @@
 from __future__ import absolute_import, print_function
 
 # Standard module
-import os
 import logging
 import re
 import random
@@ -36,11 +35,12 @@ from fb_tools.vsphere.iface import VsphereVmInterface
 
 from .config import CrTplConfiguration
 
-__version__ = '1.0.0'
+__version__ = '1.0.1'
 
 LOG = logging.getLogger(__name__)
 TZ = pytz.timezone('Europe/Berlin')
 
+
 # =============================================================================
 class TempVmExistsError(ExpectedHandlerError):
     """Special error class for the case, if the temporary VM is already existing."""