From cee6bddfda42f6180d37d4219c03e436fa1eaca1 Mon Sep 17 00:00:00 2001 From: Grey Thomas <83403671+greysk@users.noreply.github.com> Date: Mon, 2 Aug 2021 11:16:48 -0400 Subject: 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. --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- cgit v1.2.1