Skip to content

Commit

Permalink
And another init incompatibility bites the dust.
Browse files Browse the repository at this point in the history
  • Loading branch information
sjoerdmullender committed Dec 22, 1993
1 parent d6b9ce9 commit c6d846a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Demo/sgi/video/Vaddcache.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ def main():
def process(filename):
try:
fp = open(filename, 'r+')
vin = VFile.RandomVinFile().initfp(fp, filename)
vin = VFile.RandomVinFile(fp)
vin.filename = filename
except IOError, msg:
sys.stderr.write(filename + ': I/O error: ' + `msg` + '\n')
return 1
Expand Down

0 comments on commit c6d846a

Please sign in to comment.