commit | d11b68ab0834be4be76fca479cd4426eb45dfaec | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Sun Jan 06 21:13:42 2008 +0000 |
committer | Georg Brandl <georg@python.org> | Sun Jan 06 21:13:42 2008 +0000 |
tree | bc05f1c9ac1e0460d2f30531fcb31ab09084979e | |
parent | 7357c23ee72d687433452555018e9931159a2dfa [diff] [blame] |
Fix more exception slicing.
diff --git a/Demo/pdist/cvslock.py b/Demo/pdist/cvslock.py index a48c702..ffaa15e 100755 --- a/Demo/pdist/cvslock.py +++ b/Demo/pdist/cvslock.py
@@ -131,7 +131,7 @@ return except os.error as msg: self.lockdir = None - if msg[0] == EEXIST: + if msg.args[0] == EEXIST: try: st = os.stat(self.cvslck) except os.error: