Skip to content

Commit 92a9a97

Browse files
committed
HTCONDOR-2688 Fix unitialized variable warnings
1 parent 6cda9f1 commit 92a9a97

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: src/htcondorce/web.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
_view = None
2323
_plugins = []
2424
OK_STATUS = '200 OK'
25+
_jinja_env = None
26+
multice = None
2527

2628
log = logging.getLogger(__name__)
2729
log.setLevel(logging.DEBUG)
@@ -90,7 +92,6 @@ def validate_plugin(name, plugin):
9092
def check_initialized(environ):
9193
global _initialized
9294
global _jinja_env
93-
global _cp
9495
global _plugins
9596
global htcondor
9697
global multice

0 commit comments

Comments
 (0)