Skip to content

Commit d429577

Browse files
authored
Typo in node version check -> missing '2>' to supress errors (#248)
1 parent 96fa79f commit d429577

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

rlbot_gui/gui.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ def filter_hidden_bundles(bundles):
401401
@eel.expose
402402
def get_language_support():
403403
java_return_code = os.system("java -version 2> nul")
404-
node_return_code = os.system("node --version > nul")
404+
node_return_code = os.system("node --version 2> nul")
405405
# Only bother returning iffy languages. No point in sending 'python': True
406406
return {
407407
'java': java_return_code == 0,

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import setuptools
22

3-
__version__ = '0.0.163'
3+
__version__ = '0.0.164'
44

55
with open("README.md", "r") as readme_file:
66
long_description = readme_file.read()

0 commit comments

Comments
 (0)