Skip to content

Commit

Permalink
better module name, add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ilanschnell committed Mar 18, 2016
1 parent 79f103c commit 3af0cca
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion conda_env/env.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from . import compat
from . import exceptions
from . import yaml
from conda_env.conda_pip import add_pip_installed
from conda_env.pip_util import add_pip_installed


def load_from_directory(directory):
Expand Down
2 changes: 1 addition & 1 deletion conda_env/installers/pip.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import subprocess

from conda.cli import common
from conda_env.conda_pip import pip_args
from conda_env.pip_util import pip_args


def install(prefix, specs, args, env):
Expand Down
2 changes: 2 additions & 0 deletions conda_env/conda_pip.py → conda_env/pip_util.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
"""
Functions related to core conda functionality that relates to pip
NOTE: This modules used to in conda, as conda/pip.py
"""
from __future__ import absolute_import, print_function
from os.path import isfile, join
Expand Down

0 comments on commit 3af0cca

Please sign in to comment.