Skip to content

Commit

Permalink
Incorporated yaml dependency-loading improvement from dev branch
Browse files Browse the repository at this point in the history
  • Loading branch information
pineapplemachine committed May 5, 2017
1 parent 4b4611e commit 16796ae
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
7 changes: 0 additions & 7 deletions manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,6 @@



import sys
import os

basedir = os.path.dirname(os.path.abspath(__file__))
sys.path.append(basedir)
sys.path.append(os.path.join(basedir, 'lib'))

import raws
import pydwarf

Expand Down
8 changes: 8 additions & 0 deletions pydwarf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,14 @@



import sys
import os

# Expose the packaged yaml dependency
basedir = os.path.dirname(os.path.abspath(__file__)) + '/..'
sys.path.append(basedir)
sys.path.append(os.path.join(basedir, 'lib'))

import logger
import response
import helpers
Expand Down

0 comments on commit 16796ae

Please sign in to comment.