summaryrefslogtreecommitdiff
path: root/gitdb/typ.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2014-11-14 12:45:19 +0100
committerSebastian Thiel <byronimo@gmail.com>2014-11-14 12:45:19 +0100
commit2f2fe4eea8ba4f47e63a7392a1f27f74f5ee925d (patch)
tree176a493d114fab7cc6e930bf318b2339db386cf5 /gitdb/typ.py
parent81707c606b88e971cc359e3e9f3abeeea2204860 (diff)
parent0dcec5a27b341ce58e5ab169f91aa25b2cafec0c (diff)
downloadgitdb-0.6.0.tar.gz
Merge branch 'py2n3'0.6.0
* python 3 compatibility * all tests work in py2.6, 2.7, 3.3, 3.4
Diffstat (limited to 'gitdb/typ.py')
-rw-r--r--gitdb/typ.py12
1 files changed, 4 insertions, 8 deletions
diff --git a/gitdb/typ.py b/gitdb/typ.py
index e84dd24..bc7ba58 100644
--- a/gitdb/typ.py
+++ b/gitdb/typ.py
@@ -4,11 +4,7 @@
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
"""Module containing information about types known to the database"""
-#{ String types
-
-str_blob_type = "blob"
-str_commit_type = "commit"
-str_tree_type = "tree"
-str_tag_type = "tag"
-
-#} END string types
+str_blob_type = b'blob'
+str_commit_type = b'commit'
+str_tree_type = b'tree'
+str_tag_type = b'tag'