Преглед на файлове

Ugly fix for a doctest in "docs/tutorial/repo.txt" to account for different
file path separators.

Risto Kankkunen преди 13 години
родител
ревизия
ac350b129d
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2 2
      docs/tutorial/repo.txt

+ 2 - 2
docs/tutorial/repo.txt

@@ -52,8 +52,8 @@ so only non-bare repositories will have an index, too. To open the index, simply
 call::
 
     >>> index = repo.open_index()
-    >>> index
-    Index('myrepo/.git/index')
+    >>> repr(index).replace('\\\\', '/')
+    "Index('myrepo/.git/index')"
 
 Since the repository was just created, the index will be empty::