From 105dc41175a4fe900955affc033e100655002e8d Mon Sep 17 00:00:00 2001 From: Eleni Lixourioti Date: Sat, 23 Apr 2016 14:52:03 +0100 Subject: [PATCH] Remove confusing (myvenv) from pythonanywhere prompt When you navigate into the project directory at that point of the tutorial in pythonanywhere you actually see something along the lines of: ``` (myvenv) somestuffhere (master)$ ``` I think it's simpler to not have the `(myvenv)` part at all (since it's not needed/relevant in that step) and only have what people need to type in. --- en/html/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/html/README.md b/en/html/README.md index 6747b43ae8e..ba27b09e26a 100644 --- a/en/html/README.md +++ b/en/html/README.md @@ -179,7 +179,7 @@ Once we've done that, we upload (push) our changes up to Github: ``` $ cd ~/my-first-blog -(myvenv)$ git pull +$ git pull [...] ```