mirror of
https://github.com/niess/python-appimage.git
synced 2026-03-14 12:20:14 +01:00
6 lines
114 B
Python
6 lines
114 B
Python
import platform
|
|
|
|
|
|
if platform.system() != 'Linux':
|
|
raise RuntimeError('invalid system: ' + platform.system())
|