From 6d5713d021130b60ac6287ac9c63e7f73c3611d3 Mon Sep 17 00:00:00 2001 From: Reid 'arrdem' McKenzie Date: Tue, 26 Jul 2022 00:24:30 -0600 Subject: [PATCH] Update docstring --- projects/cram/src/python/cram/__main__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/projects/cram/src/python/cram/__main__.py b/projects/cram/src/python/cram/__main__.py index 5aa99dd..91cb320 100644 --- a/projects/cram/src/python/cram/__main__.py +++ b/projects/cram/src/python/cram/__main__.py @@ -300,7 +300,8 @@ def do_state(confdir, state_file): @click.argument("confdir", type=Path) @click.argument("requirement", type=str) def do_migrate(confdir, requirement): - """Convert from the 0.0.0 config format to the 0.1.0 TOML format""" + """Format the specified requirement to a canonical-ish representation.""" + root = confdir.resolve() if not root.is_dir():