• R/O
  • HTTP
  • SSH
  • HTTPS

提交

標籤
無標籤

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

allura


Commit MetaInfo

修訂de551586d62a50be184a27c5a6b381e8c46d0de3 (tree)
時間2012-07-16 22:52:05
作者Igor Bondarenko <jetmind2@gmai...>
CommiterIgor Bondarenko

Log Message

[#3581] ticket:117 apply h.really_unicode to blob names

Change Summary

差異

--- a/ForgeHg/forgehg/model/hg.py
+++ b/ForgeHg/forgehg/model/hg.py
@@ -208,10 +208,10 @@ class HgImplementation(M.RepositoryImplementation):
208208 for name, t in tree.trees.iteritems():
209209 self.refresh_tree_info(t, seen, lazy)
210210 doc.tree_ids.append(
211- dict(name=name, id=t.hex()))
211+ dict(name=h.really_unicode(name), id=t.hex()))
212212 for name, oid in tree.blobs.iteritems():
213213 doc.blob_ids.append(
214- dict(name=name, id=oid))
214+ dict(name=h.really_unicode(name), id=oid))
215215 doc.m.save(safe=False)
216216 return doc
217217