From: Michael Orlitzky Date: Sat, 6 Oct 2018 20:46:36 +0000 (-0400) Subject: src/untangle/untangle.py: add the missing ':' killed by commit 6f70c48. X-Git-Tag: 0.0.10~1 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=untangle-https-backup.git;a=commitdiff_plain;h=b04dadfb6f6afab203b5c2d3ac1ddd0cdb3bb0dc;hp=03ad1ebaf4b287cfc4416e8ea42ce6f570aca62f src/untangle/untangle.py: add the missing ':' killed by commit 6f70c48. --- diff --git a/src/untangle/untangle.py b/src/untangle/untangle.py index 05b2cfe..6c996a0 100644 --- a/src/untangle/untangle.py +++ b/src/untangle/untangle.py @@ -113,7 +113,7 @@ class Untangle: elif self.version in ['13.1', '14']: # But the minor update v13.1 moved the backup URL. return self.get_backup_v13_1() - else + else: raise ValueError('unknown version %s' % self.version)