add missing get_arch()

pull/1150/head^2
Åke Forslund 2017-10-16 16:10:51 +02:00 committed by Steve Penrod
parent 3deb65b0c2
commit 6af06d4433
1 changed files with 5 additions and 0 deletions

View File

@ -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]