Commit 4e280e12 authored by Elliot Saba's avatar Elliot Saba
Browse files

Tsk-tsk, how did you let this happen elliot?!

parent 4bd7695b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -42,8 +42,8 @@ patients = data["patients"]
if not len(patients):
    print("Successfully logged in, queried server, but no patients in system!")
else:
    num_p = len(patients))
    print("Successfully logged in, queried server and got %d patients"%(num_p)
    num_p = len(patients)
    print("Successfully logged in, queried server and got %d patients"%(num_p))
    for p in patients:
        if len(p['note']):
            print(" [%d] with note '%s'"%(p['id'], p['note']))