Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cc-node
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mirror
cc-node
Commits
c0d05fda
Commit
c0d05fda
authored
14 years ago
by
Thibault VINCENT
Browse files
Options
Downloads
Patches
Plain Diff
fix bad exception naming
parent
05248630
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ccnode/common.py
+6
-6
6 additions, 6 deletions
ccnode/common.py
ccnode/exceptions.py
+0
-6
0 additions, 6 deletions
ccnode/exceptions.py
with
6 additions
and
12 deletions
ccnode/common.py
+
6
−
6
View file @
c0d05fda
...
@@ -280,32 +280,32 @@ class Hypervisor(LocalHost):
...
@@ -280,32 +280,32 @@ class Hypervisor(LocalHost):
def
storage
(
self
):
def
storage
(
self
):
'''
'''
'''
'''
raise
NotImplemented
raise
NotImplemented
Error
def
vm_list
(
self
):
def
vm_list
(
self
):
'''
'''
'''
'''
raise
NotImplemented
raise
NotImplemented
Error
def
vm_list_running
(
self
):
def
vm_list_running
(
self
):
'''
'''
'''
'''
raise
NotImplemented
raise
NotImplemented
Error
def
vm_list_stopped
(
self
):
def
vm_list_stopped
(
self
):
'''
'''
'''
'''
raise
NotImplemented
raise
NotImplemented
Error
def
vm_list_paused
(
self
):
def
vm_list_paused
(
self
):
'''
'''
'''
'''
raise
NotImplemented
raise
NotImplemented
Error
def
vm_get
(
self
,
name
):
def
vm_get
(
self
,
name
):
'''
'''
'''
'''
raise
NotImplemented
raise
NotImplemented
Error
class
VM
(
Host
):
class
VM
(
Host
):
...
...
This diff is collapsed.
Click to expand it.
ccnode/exceptions.py
+
0
−
6
View file @
c0d05fda
...
@@ -18,12 +18,6 @@ class CCException(Exception):
...
@@ -18,12 +18,6 @@ class CCException(Exception):
return
'
%s
'
%
self
.
_message
return
'
%s
'
%
self
.
_message
class
FeatureNotImplemented
(
CCException
):
'''
'''
pass
# host
# host
class
HostError
(
CCException
):
class
HostError
(
CCException
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment