Skip to content

Commit

Permalink
configparser import different in Python 2 & 3
Browse files Browse the repository at this point in the history
  • Loading branch information
andras86 authored Oct 29, 2016
1 parent 174e2e3 commit b3cf175
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion OptiTypePipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,10 @@
import subprocess
import os
import argparse
import configparser
try:
import configparser
except ImportError:
import ConfigParser as configparser
import time
import datetime
import pandas as pd
Expand Down

0 comments on commit b3cf175

Please sign in to comment.