Skip to content

Commit

Permalink
Remove unsupported Python < 2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Oct 14, 2017
1 parent c115489 commit eed74aa
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/collectors/endecadgraph/endecadgraph.py
Expand Up @@ -16,10 +16,7 @@
from StringIO import StringIO
import re
import sys
if sys.version_info >= (2, 5):
import xml.etree.cElementTree as ElementTree
else:
import cElementTree as ElementTree
import xml.etree.cElementTree as ElementTree


class EndecaDgraphCollector(diamond.collector.Collector):
Expand Down

0 comments on commit eed74aa

Please sign in to comment.