Correct stray use of location
[mudpy.git] / lib / mudpy / data.py
index 7d030c2..ad171d8 100644 (file)
@@ -1,22 +1,17 @@
 # -*- coding: utf-8 -*-
 """Data interface functions for the mudpy engine."""
 
-# Copyright (c) 2004-2013 Jeremy Stanley <fungi@yuggoth.org>. Permission
+# Copyright (c) 2004-2014 Jeremy Stanley <fungi@yuggoth.org>. Permission
 # to use, copy, modify, and distribute this software is granted under
 # terms provided in the LICENSE file distributed with this software.
 
 import codecs
+import configparser
 import os
 import re
 import stat
 import sys
 
-# TODO: remove this check after the switch to py3k
-try:
-    import configparser
-except ImportError:
-    import ConfigParser as configparser
-
 import mudpy