Browse Source

Fix shutdown request initialization

micbou 7 years ago
parent
commit
40d0303405
1 changed files with 1 additions and 1 deletions
  1. 1 1
      python/ycm/client/shutdown_request.py

+ 1 - 1
python/ycm/client/shutdown_request.py

@@ -29,7 +29,7 @@ TIMEOUT_SECONDS = 0.1
 
 class ShutdownRequest( BaseRequest ):
   def __init__( self ):
-    super( BaseRequest, self ).__init__()
+    super( ShutdownRequest, self ).__init__()
 
 
   def Start( self ):