multiscript-windows 1.0.0__tar.gz → 1.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: multiscript-windows
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: A lightweight wrapper to run Batch and VBScript within Python.
5
5
  Author-email: KingTheCoder <kingjd490@gmail.com>
6
6
  License: GPL-3.0-only
7
- Project-URL: Homepage, https://github.com/KingTheCoder/multiscript-windows
7
+ Project-URL: Homepage, https://pypi.org/project/multiscript-windows/#files
8
8
  Classifier: Programming Language :: Python :: 3
9
9
  Classifier: Programming Language :: Python :: 3.13
10
10
  Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
@@ -76,6 +76,14 @@ Licensed under the GNU General Public License v3 (GPLv3).
76
76
 
77
77
  For more information, read the LICENSE file in the project directory.
78
78
 
79
+ ## Versions
80
+
81
+ All of the versions of multiscript.
82
+
83
+ ## 1.0.1
84
+
85
+ Fixed a bug where enabling `showreturncode` for the `vbscript` function would cause a `TypeError`.
86
+
79
87
  ## Some Extra
80
88
 
81
89
  Hey, thanks for reading all the way to the end!
@@ -60,6 +60,14 @@ Licensed under the GNU General Public License v3 (GPLv3).
60
60
 
61
61
  For more information, read the LICENSE file in the project directory.
62
62
 
63
+ ## Versions
64
+
65
+ All of the versions of multiscript.
66
+
67
+ ## 1.0.1
68
+
69
+ Fixed a bug where enabling `showreturncode` for the `vbscript` function would cause a `TypeError`.
70
+
63
71
  ## Some Extra
64
72
 
65
73
  Hey, thanks for reading all the way to the end!
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "multiscript-windows"
7
- version = "1.0.0"
7
+ version = "1.0.1"
8
8
  authors = [
9
9
  { name="KingTheCoder", email="kingjd490@gmail.com" },
10
10
  ]
@@ -20,4 +20,4 @@ classifiers = [
20
20
  ]
21
21
 
22
22
  [project.urls]
23
- Homepage = "https://github.com/KingTheCoder/multiscript-windows"
23
+ Homepage = "https://pypi.org/project/multiscript-windows/#files"
@@ -36,6 +36,6 @@ def vbscript(scr, err=False, rcd=False, wsc=False):
36
36
  if err:
37
37
  rtn = (rtn + "\n" + snd.stderr)
38
38
  if rcd:
39
- rtn = (rtn + "\n" + snd.returncode)
39
+ rtn = (rtn + "\n" + str(snd.returncode))
40
40
  os.remove("temp.vbs")
41
41
  return rtn
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: multiscript-windows
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: A lightweight wrapper to run Batch and VBScript within Python.
5
5
  Author-email: KingTheCoder <kingjd490@gmail.com>
6
6
  License: GPL-3.0-only
7
- Project-URL: Homepage, https://github.com/KingTheCoder/multiscript-windows
7
+ Project-URL: Homepage, https://pypi.org/project/multiscript-windows/#files
8
8
  Classifier: Programming Language :: Python :: 3
9
9
  Classifier: Programming Language :: Python :: 3.13
10
10
  Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
@@ -76,6 +76,14 @@ Licensed under the GNU General Public License v3 (GPLv3).
76
76
 
77
77
  For more information, read the LICENSE file in the project directory.
78
78
 
79
+ ## Versions
80
+
81
+ All of the versions of multiscript.
82
+
83
+ ## 1.0.1
84
+
85
+ Fixed a bug where enabling `showreturncode` for the `vbscript` function would cause a `TypeError`.
86
+
79
87
  ## Some Extra
80
88
 
81
89
  Hey, thanks for reading all the way to the end!