Skip to content

Commit

Permalink
Update source/common.c
Browse files Browse the repository at this point in the history
PR trivial merge

Co-authored-by: Michael Graeb <[email protected]>
  • Loading branch information
JonathanHenson and graebm authored Oct 10, 2023
1 parent 9aa70b7 commit a475f46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/common.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ PyObject *aws_py_load_system_environment(PyObject *self, PyObject *args) {
PyObject *aws_py_is_env_ec2(PyObject *self, PyObject *args) {
PyObject *env_capsule = NULL;
if (!PyArg_ParseTuple(args, "O", &env_capsule)) {
return PyErr_AwsLastError();
return NULL;
}

struct aws_system_environment *env = PyCapsule_GetPointer(env_capsule, s_capsule_name_sys_env);
Expand Down

0 comments on commit a475f46

Please sign in to comment.