Skip to content
Snippets Groups Projects
Commit c51f5031 authored by Aurélien Dunand's avatar Aurélien Dunand Committed by Seblu
Browse files

Fix missing parenthesises

parent 0bcbfc2a
No related branches found
No related tags found
No related merge requests found
......@@ -233,7 +233,7 @@ class Repository(object):
r = self.db.ask("select md5 from image where name = ? and version = ? limit 1",
(name,version)).fetchone()
if r is None:
raise Exception("No such image %s version %s" % name, version)
raise Exception("No such image %s version %s" % (name, version))
path = os.path.join(self.config.path, r[0])
debug("Getting %s v%s from %s" % (name, version, path))
pkg = PackageImage(path, md5name=True)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment