Make logger available in project.py

This commit is contained in:
Tom Stuart 2014-01-02 23:27:47 +00:00
parent 3d411ed0bb
commit 5ba7040df2
1 changed files with 3 additions and 0 deletions

View File

@ -1,5 +1,8 @@
import logging
from .service import Service
log = logging.getLogger(__name__)
def sort_service_dicts(services):
# Sort in dependency order
def cmp(x, y):