repomate 0.2.5 → 0.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/repomate/package.rb +1 -1
- metadata +1 -1
data/lib/repomate/package.rb
CHANGED
@@ -51,7 +51,7 @@ module RepoMate
|
|
51
51
|
def load_checksums
|
52
52
|
result = []
|
53
53
|
|
54
|
-
@pkgdb.query("select md5, sha1, sha256 from checksums where basename = '#{@basename}' and mtime = '#{@mtime.iso8601}' and suite = #{@suite}").each do |row|
|
54
|
+
@pkgdb.query("select md5, sha1, sha256 from checksums where basename = '#{@basename}' and mtime = '#{@mtime.iso8601}' and suite = '#{@suite}'").each do |row|
|
55
55
|
result = row
|
56
56
|
end
|
57
57
|
result
|