Skip to content

Commit 3221134

Browse files
committed
docs: fix typo
Signed-off-by: Adrian Suciu <adrian.suciu@analog.com>
1 parent 599bf52 commit 3221134

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

docs/user_guide/troubleshooting.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ As you can see the format of the Scopy v2.0 is different, the main key is the pl
6666

6767
.. code-block:: bash
6868
69-
scopy_ini_converter --outmode v2 --input scopy_v1_config.ini --output scopy_v2_config.ini
70-
69+
python3 ./scopy_ini_converter.py --outmode v2 --input scopy_v1_config.ini --output scopy_v2_config.ini
7170
71+
This script will convert ini files from version 1 to version2.
7272

7373
Any unexpected behavior? Send us the log!
7474
------------------------------------------------------------

tools/scopy_ini_converter.py

100644100755
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/bin/python3
2+
13
import argparse
24
import configparser
35

@@ -47,4 +49,5 @@ def main():
4749
convert_ini_to_flat(args.input, args.output)
4850

4951
if __name__ == "__main__":
50-
main()
52+
main()
53+

0 commit comments

Comments
 (0)