##// END OF EJS Templates
obsolete: fix typos in comments introduced by 6955d69a52a4
Thomas Arendsen Hein -
r17306:7d2967de stable
parent child Browse files
Show More
@@ -290,7 +290,7 b' class localrepository(object):'
290 def obsstore(self):
290 def obsstore(self):
291 store = obsolete.obsstore(self.sopener)
291 store = obsolete.obsstore(self.sopener)
292 if store and not obsolete._enabled:
292 if store and not obsolete._enabled:
293 # message is rare enough to not be stranlated
293 # message is rare enough to not be translated
294 msg = 'obsolete feature not enabled but %i markers found!\n'
294 msg = 'obsolete feature not enabled but %i markers found!\n'
295 self.ui.warn(msg % len(list(store)))
295 self.ui.warn(msg % len(list(store)))
296 return store
296 return store
@@ -493,7 +493,7 b' Do not warn about new head when the new '
493 adding file changes
493 adding file changes
494 added 1 changesets with 1 changes to 1 files (+1 heads)
494 added 1 changesets with 1 changes to 1 files (+1 heads)
495
495
496 Checking _enable=False warning if obsolete marker exist
496 Checking _enable=False warning if obsolete marker exists
497
497
498 $ echo '[extensions]' >> $HGRCPATH
498 $ echo '[extensions]' >> $HGRCPATH
499 $ echo "obs=!" >> $HGRCPATH
499 $ echo "obs=!" >> $HGRCPATH
General Comments 0
You need to be logged in to leave comments. Login now