]> gitweb.michael.orlitzky.com - untangle-https-backup.git/commitdiff
Fix the last commit by allowing v12 in the version sanity check.
authorMichael Orlitzky <michael@orlitzky.com>
Thu, 12 May 2016 12:54:37 +0000 (08:54 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Fri, 13 May 2016 00:29:28 +0000 (20:29 -0400)
src/untangle/untangle.py

index f8fd795aa49dbb3533d8f7a45d005a4d80f0b584..39eeeaa6abb3dc200eb1128998fee8bd97d30fe0 100644 (file)
@@ -22,7 +22,7 @@ class Untangle:
         self.base_url = 'https://' + self.host + '/' # This never changes
 
         # Sanity check the numerical version.
-        if self.version not in [9, 11]:
+        if self.version not in [9, 11, 12]:
             msg =  'Invalid version "' + str(self.version) + '" '
             msg += 'in section "' + s.name + '"'
             raise configparser.ParsingError(msg)