From 9034710113821591fad3b73d5545c84e95420c68 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Thu, 4 May 2006 02:00:51 +0000 Subject: [PATCH] Main now takes a list of args git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39005 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/scripts/pywxrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wxPython/scripts/pywxrc b/wxPython/scripts/pywxrc index 066caa8e78..5327220488 100755 --- a/wxPython/scripts/pywxrc +++ b/wxPython/scripts/pywxrc @@ -1,5 +1,5 @@ #!/usr/bin/env python - +import sys from wx.tools.pywxrc import main -main() +main(sys.argv[1:]) -- 2.50.0