Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
itminedu
synnefo
Commits
07e6d8d5
Commit
07e6d8d5
authored
Aug 25, 2016
by
Giorgos Korfiatis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cyclades: Fix displaying ip log
Fix order of arguments in log display function.
parent
10263282
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
snf-cyclades-app/synnefo/db/models.py
snf-cyclades-app/synnefo/db/models.py
+1
-1
No files found.
snf-cyclades-app/synnefo/db/models.py
View file @
07e6d8d5
...
...
@@ -954,7 +954,7 @@ class IPAddressLog(models.Model):
def
__unicode__
(
self
):
return
u
"<Address: %s, Server: %s, Network: %s, Allocated at: %s>"
\
%
(
self
.
address
,
self
.
network
_id
,
self
.
server
_id
,
%
(
self
.
address
,
self
.
server
_id
,
self
.
network
_id
,
self
.
allocated_at
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment