Skip to content

Commit

Permalink
ImportError fix for docs build
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Smith committed Mar 25, 2015
1 parent f86a38e commit c621bec
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion applications/cableplan/cableplan.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,12 @@
import datetime as datetime_

from acitoolkit.acisession import Session
from credentials import *
try:
from credentials import *
except ImportError:
URL = ''
LOGIN = ''
PASSWORD = ''
from acitoolkit.acitoolkit import *
from acitoolkit.aciphysobject import *

Expand Down

0 comments on commit c621bec

Please sign in to comment.