mirror of
https://github.com/moepman/acertmgr.git
synced 2024-11-14 18:35:27 +01:00
12 lines
257 B
Python
Executable File
12 lines
257 B
Python
Executable File
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# acertmgr compatibility script for legacy installations
|
|
# Copyright (c) Rudolf Mayerhofer, 2019.
|
|
# available under the ISC license, see LICENSE
|
|
|
|
import acertmgr
|
|
|
|
if __name__ == "__main__":
|
|
acertmgr.main()
|