Skip to content

Commit cf640ee

Browse files
committed
fix typo in meta app
1 parent 9b74455 commit cf640ee

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

TODO.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ TODO
22
====
33

44
* Wrap start_response so we know whether it's safe to reroute WSGI
5-
5+
* dependency overrides for testing
6+
67
v19.0
78
-----
89
* stats middleware reset/clear endpoint

clastic/meta.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def get_proc_info():
9595
ret['pid'] = os.getpid()
9696
_user_t, _sys_t = os.times()[:2]
9797
ret['cpu_times'] = {'user_time': _user_t, 'sys_time': _sys_t}
98-
ret['cwd'] = os.getcwdu()
98+
ret['cwd'] = os.getcwd()
9999
ret['umask'] = os.umask(os.umask(2)) # have to set to get
100100
ret['umask_str'] = '{0:03o}'.format(ret['umask'])
101101

0 commit comments

Comments
 (0)