summaryrefslogtreecommitdiff
path: root/git/odict.py
diff options
context:
space:
mode:
Diffstat (limited to 'git/odict.py')
-rw-r--r--git/odict.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/git/odict.py b/git/odict.py
deleted file mode 100644
index f003d14e..00000000
--- a/git/odict.py
+++ /dev/null
@@ -1,10 +0,0 @@
-try:
- from collections import OrderedDict
-except ImportError:
- try:
- from ordereddict import OrderedDict
- except ImportError:
- import warnings
- warnings.warn("git-python needs the ordereddict module installed in python below 2.6 and below.")
- warnings.warn("Using standard dictionary as substitute, and cause reordering when writing git config")
- OrderedDict = dict