From 891a9e8bdf74a3544557d1dbae9e56c7cc9eb154 Mon Sep 17 00:00:00 2001
From: cody burkard <cody@onlab.us>
Date: Wed, 6 Aug 2014 17:52:40 -0700
Subject: [PATCH] fixed syntax error

---
 mininet/util.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mininet/util.py b/mininet/util.py
index 673d3f6d..b1dc4920 100644
--- a/mininet/util.py
+++ b/mininet/util.py
@@ -253,7 +253,7 @@ def macColonHex( mac ):
     """Generate MAC colon-hex string from unsigned int.
        mac: MAC address as unsigned int
        returns: macStr MAC colon-hex string"""
-       return _colonHex( mac, 6 )
+    return _colonHex( mac, 6 )
 
 def ipStr( ip ):
     """Generate IP address string from an unsigned int.
-- 
GitLab