Infrastruture: fix typos
diff --git a/generic_utils.py b/generic_utils.py
index 3ed67ce..1cfba86 100644
--- a/generic_utils.py
+++ b/generic_utils.py
@@ -44,7 +44,7 @@
def debug(obj):
"""
Legacy logging method. Delegate to logging.debug.
- Use logging.debug directly in the future.S
+ Use logging.debug directly in the future.
"""
logging.debug(obj)
diff --git a/loxi_ir/ir.py b/loxi_ir/ir.py
index 21f760c..82227fb 100644
--- a/loxi_ir/ir.py
+++ b/loxi_ir/ir.py
@@ -172,7 +172,7 @@
if self.is_fixed_length:
return self.base_length
else:
- raise Exception("Not a fixed length class: {}".self.name)
+ raise Exception("Not a fixed length class: {}".format(self.name))
""" one class unified across openflow versions. Keeps around a map version->versioned_class """
class OFUnifiedClass(OFClass):