##// END OF EJS Templates
py3: use bytes instead of str in instance()...
Pulkit Goyal -
r37383:1ccd7502 default
parent child Browse files
Show More
@@ -106,7 +106,7 b' def activepath(repo, remote):'
106 rpath = remote
106 rpath = remote
107 if local:
107 if local:
108 rpath = remote._repo.root
108 rpath = remote._repo.root
109 elif not isinstance(remote, str):
109 elif not isinstance(remote, bytes):
110 rpath = remote._url
110 rpath = remote._url
111
111
112 # represent the remotepath with user defined path name if exists
112 # represent the remotepath with user defined path name if exists
General Comments 0
You need to be logged in to leave comments. Login now