made py 3 compatable
This commit is contained in:
@ -1,4 +1,8 @@
|
||||
from ConfigParser import ConfigParser
|
||||
try:
|
||||
from configparser import ConfigParser
|
||||
except ImportError:
|
||||
# Python < 3
|
||||
from ConfigParser import ConfigParser
|
||||
|
||||
|
||||
def get_version():
|
||||
|
Reference in New Issue
Block a user