Code tidyup after 2to3 conversion
Moved config parser into its own module
This commit is contained in:
parent
0805f032fb
commit
ba681cea89
14 changed files with 119 additions and 118 deletions
|
@ -1,11 +1,12 @@
|
|||
from __future__ import print_function
|
||||
import sys
|
||||
import os
|
||||
import logging
|
||||
try:
|
||||
import unittest2 as unittest
|
||||
import unittest2 as unittest # Python2.6
|
||||
except ImportError:
|
||||
import unittest
|
||||
import logging
|
||||
|
||||
import openphoto
|
||||
|
||||
def get_test_server_api():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue