* Accept both base10 and base16 format for (almost) all integer arguments
  when specified by the user.

* Print ethernetFrameType as hex (because it is the typical convention).
diff --git a/web/get_flow.py b/web/get_flow.py
index 65def9b..fdaa10b 100755
--- a/web/get_flow.py
+++ b/web/get_flow.py
@@ -92,7 +92,7 @@
       if matchVlanPriority == True:
 	print "    vlanPriority: %s" % vlanPriority
       if matchEthernetFrameType == True:
-	print "    ethernetFrameType: %s" % ethernetFrameType
+	print "    ethernetFrameType: %s" % hex(ethernetFrameType)
       if matchIpToS == True:
 	print "    ipToS: %s" % ipToS
       if matchIpProto == True: