diff options
Diffstat (limited to 'Python')
-rw-r--r-- | Python/sysmodule.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 94f15255b2..89e7e30481 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -1069,8 +1069,8 @@ svnversion_init(void) strcpy(branch, ""); strcpy(shortbranch, "unknown"); svn_revision = ""; - return - Py_FatalError("subversion keywords missing"); + return; + /* Py_FatalError("subversion keywords missing"); */ } br_start = python + 8; |