File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ See donation options at <https://www.git-pull.com/support.html>.
88
88
- Changelog: < https://libvcs.git-pull.com/history.html >
89
89
- API:
90
90
- [ ` libvcs.cmd ` ] ( https://libvcs.git-pull.com/cmd/ ) : Commands
91
- - [ ` libvcs.states ` ] ( https://libvcs.git-pull.com/states / ) : High-level synchronization commands
91
+ - [ ` libvcs.projects ` ] ( https://libvcs.git-pull.com/projects / ) : High-level synchronization commands
92
92
- Issues: < https://github.com/vcs-python/libvcs/issues >
93
93
- Test Coverage: < https://codecov.io/gh/vcs-python/libvcs >
94
94
- pypi: < https://pypi.python.org/pypi/libvcs >
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ class VCSLocation(NamedTuple):
16
16
17
17
18
18
def convert_pip_url (pip_url : str ) -> VCSLocation :
19
- """Return repo URL and revision by parsing `libvcs.base.BaseProject.url`."""
19
+ """Return repo URL and revision by parsing `libvcs.projects. base.BaseProject.url`."""
20
20
error_message = (
21
21
"Sorry, '%s' is a malformed VCS url. "
22
22
"The format is <vcs>+<protocol>://<url>, "
@@ -129,12 +129,12 @@ def run(
129
129
"""Return combined stderr/stdout from a command.
130
130
131
131
This method will also prefix the VCS command bin_name. By default runs
132
- using the cwd `libvcs.base.BaseProject.dir` of the repo.
132
+ using the cwd `libvcs.projects. base.BaseProject.dir` of the repo.
133
133
134
134
Parameters
135
135
----------
136
136
cwd : str
137
- dir command is run from, defaults to `libvcs.base.BaseProject.dir`.
137
+ dir command is run from, defaults to `libvcs.projects. base.BaseProject.dir`.
138
138
139
139
check_returncode : bool
140
140
Indicate whether a :exc:`~exc.CommandError` should be raised if return code
Original file line number Diff line number Diff line change @@ -162,7 +162,7 @@ def __init__(
162
162
.. code-block:: python
163
163
164
164
import os
165
- from libvcs.git import GitProject
165
+ from libvcs.projects. git import GitProject
166
166
167
167
checkout = pathlib.Path(__name__) + '/' + 'my_libvcs'
168
168
@@ -177,7 +177,7 @@ def __init__(
177
177
.. code-block:: python
178
178
179
179
import os
180
- from libvcs.git import GitProject
180
+ from libvcs.projects. git import GitProject
181
181
182
182
checkout = pathlib.Path(__name__) + '/' + 'my_libvcs'
183
183
You can’t perform that action at this time.
0 commit comments