Skip to content

Commit

Permalink
Update import jsonrpclib
Browse files Browse the repository at this point in the history
 - Fix #1
  • Loading branch information
phil-dileo committed Aug 13, 2015
1 parent ecb13ea commit 1ce93f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions portAuto
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
None known.
"""

from jsonrpclib import Server
import jsonrpclib
import logging
import pprint as pp
import re
Expand Down Expand Up @@ -132,7 +132,7 @@ def setup_eapi_connection():
SWITCH_IP)

log("Setting up connection to %s" % url)
eapi = Server(url)
eapi = jsonrpclib.Server(url)
return eapi


Expand Down

0 comments on commit 1ce93f2

Please sign in to comment.