diff options
Diffstat (limited to 'bin/g-common')
-rwxr-xr-x | bin/g-common | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/g-common b/bin/g-common index e2649a4..e8d80b1 100755 --- a/bin/g-common +++ b/bin/g-common @@ -1,6 +1,7 @@ #!python +import sys from g_common import g_common if __name__ == "__main__": - g_common.main() + sys.exit(g_common.main()) |