Skip to content

Commit

Permalink
[docs] fix the kwargs used in freeze_server32 examples
Browse files Browse the repository at this point in the history
  • Loading branch information
jborbely committed Mar 28, 2024
1 parent bbb8bfa commit bba7700
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/refreeze.rst
Expand Up @@ -51,9 +51,9 @@ function with the appropriate keyword arguments, for example,
.. code-block:: python
from msl.loadlib import freeze_server32
freeze_server32.main(packages='numpy')
freeze_server32.main(imports='numpy')
and run your script using the 32-bit Python interpreter.
and run your script using a 32-bit Python interpreter.

.. _refreeze-cli:

Expand All @@ -72,6 +72,6 @@ For example, if you want to include your own package and data files, you would r

.. code-block:: console
freeze32 --packages my_package --data .\mydata\lib32.dll
freeze32 --imports my_package --data .\mydata\lib32.dll
.. _PyInstaller: https://www.pyinstaller.org/

0 comments on commit bba7700

Please sign in to comment.