[entropy.db] EntropyRepositoryBase.checksum() make "strings" the default

This commit is contained in:
Fabio Erculiani
2010-07-29 19:04:34 +02:00
parent bba8ab945d
commit 4e003f81bc
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -4628,7 +4628,7 @@ class EntropyRepository(EntropyRepositoryBase):
return exists
def checksum(self, do_order = False, strict = True,
strings = False, include_signatures = False):
strings = True, include_signatures = False):
"""
Reimplemented from EntropyRepositoryBase.
"""
+1 -1
View File
@@ -3321,7 +3321,7 @@ class EntropyRepositoryBase(TextInterface, EntropyRepositoryPluginStore, object)
raise NotImplementedError()
def checksum(self, do_order = False, strict = True,
strings = False, include_signatures = False):
strings = True, include_signatures = False):
"""
Get Repository metadata checksum, useful for integrity verification.
Note: result is cached in EntropyRepository.live_cache (dict).