Skip to content

Commit

Permalink
v0.0.8.4 fix output of CLI when no config available to mention .vcspu…
Browse files Browse the repository at this point in the history
…ll.yaml or .vcspull.json.
  • Loading branch information
tony committed Feb 6, 2014
1 parent 6a0f965 commit 898a5c6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ Changelog

Here you can find the recent changes to vcspull.

0.0.8.4
-------

- [cli] Update documentation when no config found to show ``yaml`` and
``json``. Remove mentioning of ``conf``.

0.0.8.3
-------

Expand Down
2 changes: 1 addition & 1 deletion vcspull/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
__title__ = 'vcspull'
__package_name__ = 'vcspull'
__description__ = 'Mass update git, hg and svn repos simultaneously from YAML / JSON file.'
__version__ = '0.0.8.3'
__version__ = '0.0.8.4'
__author__ = 'Tony Narlock'
__email__ = 'tony@git-pull.com'
__license__ = 'BSD'
Expand Down
2 changes: 1 addition & 1 deletion vcspull/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def command_load(args):
has_json_config = os.path.exists(json_config)
if not has_yaml_config and not has_json_config:
log.fatal(
'No config file found. Create a .vcspull.{yaml,conf}'
'No config file found. Create a .vcspull.yaml or .vcspull.json'
' in your $HOME directory. http://vcspull.rtfd.org for a'
' quickstart.'
)
Expand Down

0 comments on commit 898a5c6

Please sign in to comment.