• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

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

allura


Commit MetaInfo

Revisionde551586d62a50be184a27c5a6b381e8c46d0de3 (tree)
Zeit2012-07-16 22:52:05
AutorIgor Bondarenko <jetmind2@gmai...>
CommiterIgor Bondarenko

Log Message

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

Ändern Zusammenfassung

Diff

--- 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