diff options
author | Scott Moser <smoser@ubuntu.com> | 2015-07-21 12:36:53 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2015-07-21 12:36:53 -0400 |
commit | b5230bc3e9d65692093cae9d2f4ca628435a382b (patch) | |
tree | 649eb8a2c42a8f8099b32cd59c0d4231c3fcfad2 /tests/unittests/test_datasource | |
parent | 0db6078c5555cdddcd195cefdc04154e4a754dd6 (diff) | |
download | vyos-cloud-init-b5230bc3e9d65692093cae9d2f4ca628435a382b.tar.gz vyos-cloud-init-b5230bc3e9d65692093cae9d2f4ca628435a382b.zip |
fix 'make pyflakes'
Diffstat (limited to 'tests/unittests/test_datasource')
-rw-r--r-- | tests/unittests/test_datasource/test_azure.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unittests/test_datasource/test_azure.py b/tests/unittests/test_datasource/test_azure.py index 33b971f6..d632bcb9 100644 --- a/tests/unittests/test_datasource/test_azure.py +++ b/tests/unittests/test_datasource/test_azure.py @@ -174,7 +174,7 @@ class TestAzureDataSource(TestCase): def xml_notequals(self, oxml, nxml): try: self.xml_equals(oxml, nxml) - except AssertionError as e: + except AssertionError: return raise AssertionError("XML is the same") |