commit: 9eac55d260bb7a9d5ce8f908432a049faa9b9390
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 16 20:15:45 2014 +0000
Commit: Brian Dolbec <brian.dolbec <AT> gmail <DOT> com>
CommitDate: Mon Jun 16 20:15:45 2014 +0000
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=9eac55d2
sync/modules/websync: Fix websync description
---
pym/portage/sync/modules/websync/__init__.py | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/pym/portage/sync/modules/websync/__init__.py
b/pym/portage/sync/modules/websync/__init__.py
index 7d1586a..e93ee10 100644
--- a/pym/portage/sync/modules/websync/__init__.py
+++ b/pym/portage/sync/modules/websync/__init__.py
@@ -35,10 +35,12 @@ module_spec = {
'description': __doc__,
'functions': ['sync', 'new', 'exists'],
'func_desc': {
- 'sync': 'Performs a git pull on the repository',
+ 'sync': 'Performs an archived http download of
the ' +
+ 'repository, then unpacks it.
Optionally it performs a ' +
+ 'gpg verification of the downloaded
file(s)',
'new': 'Creates the new repository at the
specified location',
'exists': 'Returns a boolean of whether the
specified dir ' +
- 'exists and is a valid Git repository',
+ 'exists and is a valid repository',
},
'validate_config': CheckSyncConfig,
},