summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrey Thomas <83403671+greysk@users.noreply.github.com>2021-08-02 11:16:48 -0400
committerGitHub <noreply@github.com>2021-08-02 17:16:48 +0200
commitcee6bddfda42f6180d37d4219c03e436fa1eaca1 (patch)
tree1fbb4ff614a9e8fc99f17e541b6f2522ca7ec784
parentb21555f3b6afd2a0c660293b21e19b32f1d4f50e (diff)
downloaddateutil-git-cee6bddfda42f6180d37d4219c03e436fa1eaca1.tar.gz
Change reproducion steps to use double quotes in CONTRIBUTING.md
Change single quotes around import dateutil; print(dateutil.__version__) to double quotes, because single quotes do not work in command prompt whereas double quotes do.
-rw-r--r--CONTRIBUTING.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 1a1d984..3a383d4 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -10,7 +10,7 @@ Bug reports are an important type of contribution - it's important to get feedba
1. A minimal, reproducible example - a small, self-contained script that can reproduce the behavior is the best way to get your bug fixed. For more information and tips on how to structure these, read [Stack Overflow's guide to creating a minimal, complete, verified example](https://stackoverflow.com/help/mcve).
2. The platform and versions of everything involved, at a minimum please include operating system, `python` version and `dateutil` version. Instructions on getting your versions:
- - `dateutil`: `python -c 'import dateutil; print(dateutil.__version__)'`
+ - `dateutil`: `python -c "import dateutil; print(dateutil.__version__)"`
- `Python`: `python --version`
3. A description of the problem - what *is* happening and what *should* happen.