1
0
mirror of https://github.com/gryf/mc_adbfs.git synced 2026-02-25 16:05:45 +01:00

Fix for removing files with space/parentheses.

Also, some further py2 cleanup.
This commit is contained in:
2020-04-26 09:32:17 +02:00
parent 390f1b1112
commit 2776668913
4 changed files with 15 additions and 49 deletions

View File

@@ -109,26 +109,20 @@ The reason why `tox`_ wasn't used is, that there is no ``setup.py`` file, and
it's difficult to install simple script, which isn't a python module (python
interpreter will refuse to import module without ``.py`` extension).
It requires GNU ``make`` program, and also ``virtualenv`` besides Python in
version 2 and 3. Using it is simple as running following command:
It requires GNU ``make`` program, and also ``virtualenv``. Using it is simple
as running following command:
.. code:: shell-session
$ make
it will run `py2`, `py3` and `flake8` jobs to check it against the code. For
it will run `py3` and `flake8` jobs to check it against the code. For
running tests against Python 3:
.. code:: shell-session
$ make py3
or Python 2:
.. code:: shell-session
$ make py2
or flake 8:
.. code:: shell-session