From 6af06d4433ec6e323d236037f7d95d85bdb197dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=85ke=20Forslund?= Date: Mon, 16 Oct 2017 16:10:51 +0200 Subject: [PATCH] add missing get_arch() --- mycroft/util/__init__.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mycroft/util/__init__.py b/mycroft/util/__init__.py index 22da3e6c01..84318f73b4 100644 --- a/mycroft/util/__init__.py +++ b/mycroft/util/__init__.py @@ -255,3 +255,8 @@ def stop_speaking(): LOG.info("mycroft.utils.stop_speaking() is depreciated, use " "mycroft.audio.stop_speaking() instead.") mycroft.audio.stop_speaking() + + +def get_arch(): + """ Get architecture string of system. """ + return os.uname()[4]