From 7ef5f3202510d46a20b8e639ac3df7cf468e439b Mon Sep 17 00:00:00 2001 From: Maximilian Michels Date: Fri, 29 Sep 2017 19:29:13 +0200 Subject: [PATCH] Adjust final message Removes the 'new' behind the GitHub URL and adds the actual repo name to the sentence: Old: "Create a new(!) repo at https://github.com/new and run the script" New: "Create a new(!) repo named _reponame_ at https://github.com and run the script" --- gitfiti.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitfiti.py b/gitfiti.py index e0bbfea8c..14b1f4d51 100755 --- a/gitfiti.py +++ b/gitfiti.py @@ -396,7 +396,7 @@ def main(): save(output, 'gitfiti.sh') print('gitfiti.sh saved.') - print('Create a new(!) repo at {0}new and run the script'.format(git_base)) + print('Create a new(!) repo named {0} at {1} and run the script'.format(repo, git_base)) if __name__ == '__main__':