Skip to content

Commit

Permalink
YEA
Browse files Browse the repository at this point in the history
  • Loading branch information
DFectuoso committed Jun 27, 2010
1 parent 856b3ba commit 1f5256d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripter.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,9 @@ def GET(self,foo):
try:
pid = os.fork()
if not pid:
return "I will be getting:" + foo
else:
magic(foo)
else:
return "I will be getting:" + foo
except OSError, e:
print >>sys.stderr, "fork #2 failed: %d (%s)" % (e.errno, e.strerror)
sys.exit(1)
Expand Down

0 comments on commit 1f5256d

Please sign in to comment.