infolab-csail / lispify

Lispify converts Python objects into Lisp-like encoded strings that are interpretable in Common Lisp.
MIT License
0 stars 0 forks source link

Fix import statement in lispify #4

Closed michaelsilver closed 8 years ago

michaelsilver commented 8 years ago

I was getting import errros when using lispify in Wikipediabase. I believe the cause was python looking at the wrong util.py because .util makes python use the local file (maybe). Even if this is not the cause of the issues I was getting, it's a harmless change.

codecov-io commented 8 years ago

Current coverage is 89.53% (diff: 100%)

Merging #4 into master will not change coverage

@@             master         #4   diff @@
==========================================
  Files             2          2          
  Lines           172        172          
  Methods           0          0          
  Messages          0          0          
  Branches          0          0          
==========================================
  Hits            154        154          
  Misses           18         18          
  Partials          0          0          

Powered by Codecov. Last update 5aacb47...53f7cba

chsamlee commented 8 years ago

LGTM!