aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Jon Bernard <jbernard@tuxion.com> 2012-01-01 11:17:05 -0500
committerGravatar Jon Bernard <jbernard@tuxion.com> 2012-01-01 11:17:05 -0500
commita29704fc0b8c8dd80910dc41377b03ea00cd290b (patch)
tree9c6e2492724561d6f7a7d06ab133778918bda738
parent40d046af9ab265cfb9ab420c9dc8c10defea47be (diff)
downloaddotfiles-a29704fc0b8c8dd80910dc41377b03ea00cd290b.tar.gz
dotfiles-a29704fc0b8c8dd80910dc41377b03ea00cd290b.tar.bz2
dotfiles-a29704fc0b8c8dd80910dc41377b03ea00cd290b.zip
Improve wording of "unmanaged" with "unsynced"
Closes: #5
-rw-r--r--README.rst2
-rw-r--r--dotfiles/cli.py2
-rw-r--r--dotfiles/core.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/README.rst b/README.rst
index 39a5363..cc8f6b5 100644
--- a/README.rst
+++ b/README.rst
@@ -17,7 +17,7 @@ Interface
Add dotfile(s) to the repository.
``-c, --check``
- Check for missing or unmanged dotfiles.
+ Check for missing or unsynced dotfiles.
``-l, --list``
List currently managed dotfiles, one per line.
diff --git a/dotfiles/cli.py b/dotfiles/cli.py
index 192144f..1de9f1c 100644
--- a/dotfiles/cli.py
+++ b/dotfiles/cli.py
@@ -91,7 +91,7 @@ def add_action_group(parser):
action_group.add_option("-c", "--check",
action="store_const", dest="action", const="check",
- help="check for broken and unmanaged dotfiles")
+ help="check for broken and unsynced dotfiles")
action_group.add_option("-l", "--list",
action="store_const", dest="action", const="list",
diff --git a/dotfiles/core.py b/dotfiles/core.py
index e9f34bc..f6c675e 100644
--- a/dotfiles/core.py
+++ b/dotfiles/core.py
@@ -113,7 +113,7 @@ class Dotfiles(object):
print dotfile
def check(self):
- """List only unmanaged and/or missing dotfiles."""
+ """List only unsynced and/or missing dotfiles."""
self.list(verbose=False)