Skip to content

Commit 7f5c66b

Browse files
committed
sy - fixing minor build errors
1 parent d7714e0 commit 7f5c66b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

modules/createEVENT/HighRiseTPU/HighRiseTPU.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ int addEvent(json_t *generalInfo, json_t *currentEvent, json_t *outputEvent, boo
528528
std::string pyArgs = "HighRiseTPU.py tmpSimCenterHighRiseTPU.mat tmpSimCenterHighRiseTPU.json";
529529
std::string command = "python3 ";
530530
#ifdef _WIN32
531-
command = "python "
531+
command = "python ";
532532
#endif
533533
command += pyArgs;
534534
system(command.c_str());

modules/createEVENT/LowRiseTPU/LowRiseTPU.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ int addEvent(json_t *generalInfo, json_t *currentEvent, json_t *outputEvent, boo
534534
std::string pyArgs = "LowRiseTPU.py tmpSimCenterLowRiseTPU.mat tmpSimCenterLowRiseTPU.json";
535535
std::string command = "python3 ";
536536
#ifdef _WIN32
537-
command = "python "
537+
command = "python ";
538538
#endif
539539
command += pyArgs;
540540
system(command.c_str());

0 commit comments

Comments
 (0)