Skip to content

Commit

Permalink
Merge branch 'stable-6.0' into feature/app_generations
Browse files Browse the repository at this point in the history
  • Loading branch information
FooBarWidget committed Oct 29, 2024
2 parents 7bceab1 + 080171e commit 50bfe8d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
File renamed without changes.
7 changes: 6 additions & 1 deletion test/stub/wsgi/passenger_wsgi.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
import os, sys, time, cgi
import os, sys, time

if sys.version_info[0] >= 3 and sys.version_info[1] >= 13:
import cgishim as cgi
else:
import cgi

def file_exist(filename):
try:
Expand Down

0 comments on commit 50bfe8d

Please sign in to comment.