store: Removed extra space in _data list
authorThomas Arendsen Hein <thomas@intevation.de>
Sun, 05 Sep 2010 21:00:04 +0200
changeset 12171 cc39d07d2212
parent 12169 b62276658844
child 12172 74f54b7775f2
store: Removed extra space in _data list
mercurial/store.py
--- a/mercurial/store.py	Sun Sep 05 13:37:17 2010 -0700
+++ b/mercurial/store.py	Sun Sep 05 21:00:04 2010 +0200
@@ -163,7 +163,7 @@
         mode = None
     return mode
 
-_data = 'data 00manifest.d 00manifest.i 00changelog.d  00changelog.i'
+_data = 'data 00manifest.d 00manifest.i 00changelog.d 00changelog.i'
 
 class basicstore(object):
     '''base class for local repository stores'''