diff options
author | Christian Heimes <christian@cheimes.de> | 2008-03-24 19:58:17 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2008-03-24 19:58:17 (GMT) |
commit | a113bd9f69d07568494e54c0f8150fe14c79e413 (patch) | |
tree | b74d4d51a39c5a9596c9f79fccecc683d66fe94a /Python | |
parent | 6a453c3750889da2117616f5c90e99538a14a92a (diff) | |
download | cpython-a113bd9f69d07568494e54c0f8150fe14c79e413.zip cpython-a113bd9f69d07568494e54c0f8150fe14c79e413.tar.gz cpython-a113bd9f69d07568494e54c0f8150fe14c79e413.tar.bz2 |
Added quick hack for bzr
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 94f1525..89e7e30 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; |