Skip to content

Commit e14240d

Browse files
authored
Merge pull request #138 from risingphoenix/master
Update utils.py
2 parents 329563a + 0dd69fb commit e14240d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

php_companion/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def get_composer():
8383
def get_namespace(filename):
8484
data = get_composer()
8585
for _replace_with, _path in data['autoload']['psr-4'].items():
86-
_path = normalize_to_system_style_path(_path)
86+
_path = normalize_to_system_style_path(_path)
8787
if _path.startswith('./'):
8888
_path = _path[2:]
8989

@@ -93,7 +93,7 @@ def get_namespace(filename):
9393
return namespace.strip("\\").replace('\\\\', '\\')
9494

9595
for _replace_with, _path in data['autoload-dev']['psr-4'].items():
96-
_path = normalize_to_system_style_path(_path)
96+
_path = normalize_to_system_style_path(_path)
9797
if _path.startswith('./'):
9898
_path = _path[2:]
9999

0 commit comments

Comments
 (0)